Forum Replies Created

Viewing 15 replies - 1 through 15 (of 46 total)
  • Forum: Plugins
    In reply to: [Packeta] nefunk?ní plugin

    Teoreticky, tohle m??e byt fix pro tu první chybu:

    /** * Remaps logs. * * @param array $logs Logs. * * @return \Generator<Record> */ public function remapToRecord( array $logs ): \Generator { foreach ( $logs as $log ) { $record = new Record(); $record->id = $log->id; $record->status = $log->status; $record->date = \DateTimeImmutable::createFromFormat( CoreHelper::MYSQL_DATETIME_FORMAT, $log->date, new \DateTimeZone( 'UTC' ) ) ->setTimezone( wp_timezone() ); $record->action = $log->action; $record->title = $log->title; if ( $log->params ) { $params = json_decode( $log->params, true ); // Zajistíme, ?e $record->params je v?dy pole $record->params = is_array( $params ) ? $params : []; } else { $record->params = []; } $record->note = $this->getNote( $record->title, $record->params ); yield $record; } }

    Forum: Plugins
    In reply to: [Packeta] nefunk?ní plugin

    @vanektomas to ?e?í tu chybu s ?asem. Kde Vám to vyhazuje tu první chybu s Log/Repository.php? Jak se k ní dostanu? Zatím jsem ji nezpozoroval…

    Forum: Plugins
    In reply to: [Packeta] nefunk?ní plugin

    Opravil jsem ná? problém pomocí

    ? ? /**

    ? ? ?* Creates translated Date

    ? ? ?*

    ? ? ?* @param DateTimeImmutable|null $date ? Datetime.

    ? ? ?*

    ? ? ?* @return string|null

    ? ? ?*/

    ? ? public function getTranslatedStringFromDateTime(?DateTimeImmutable $date): ?string

    ? ? {

    ? ? ? ? if ($date !== null) {

    ? ? ? ? ? ? // P?evedeme DateTimeImmutable na formátovany ?etězec, ktery WC_DateTime umí zpracovat

    ? ? ? ? ? ? $dateString = $date->format('Y-m-d H:i:s');

    ? ? ? ? ? ? // Vytvo?íme WC_DateTime s konkrétním datem

    ? ? ? ? ? ? $wcDateTime = new WC_DateTime($dateString);

    ? ? ? ? ? ? return $wcDateTime->date_i18n(

    ? ? ? ? ? ? ? ? /**

    ? ? ? ? ? ? ? ? ?* Applies woocommerce_admin_order_date_format filters.

    ? ? ? ? ? ? ? ? ?*

    ? ? ? ? ? ? ? ? ?* @since 1.8.3

    ? ? ? ? ? ? ? ? ?*/

    ? ? ? ? ? ? ? ? apply_filters('woocommerce_admin_order_date_format', __('M j, Y', 'woocommerce')) //phpcs:ignore WordPress.WP.I18n.TextDomainMismatch

    ? ? ? ? ? ? );

    ? ? ? ? }

    ? ? ? ? return null;

    ? ? }
    Forum: Plugins
    In reply to: [Packeta] nefunk?ní plugin

    To samé u nás, jen jiná chyba:

    Fatal error: Uncaught Exception: DateTime::__construct(): Failed to parse time string (Y-m-d H:i:s) at position 1 (-): Unexpected character in /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-content/plugins/packeta/src/Packetery/Module/ModuleHelper.php:283 Stack trace: #0 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-content/plugins/packeta/src/Packetery/Module/ModuleHelper.php(283): DateTime->__construct() #1 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-content/plugins/packeta/src/Packetery/Module/Order/GridExtender.php(422): Packetery\Module\ModuleHelper->getTranslatedStringFromDateTime() #2 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-includes/class-wp-hook.php(324): Packetery\Module\Order\GridExtender->fillCustomOrderListColumns() #3 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters() #4 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-includes/plugin.php(517): WP_Hook->do_action() #5 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Orders/ListTable.php(194): do_action() #6 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-admin/includes/class-wp-list-table.php(1802): Automattic\WooCommerce\Internal\Admin\Orders\ListTable->column_default() #7 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Orders/ListTable.php(148): WP_List_Table->single_row_columns() #8 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-admin/includes/class-wp-list-table.php(1727): Automattic\WooCommerce\Internal\Admin\Orders\ListTable->single_row() #9 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-admin/includes/class-wp-list-table.php(1712): WP_List_Table->display_rows() #10 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-admin/includes/class-wp-list-table.php(1639): WP_List_Table->display_rows_or_placeholder() #11 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Orders/ListTable.php(267): WP_List_Table->display() #12 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Orders/PageController.php(299): Automattic\WooCommerce\Internal\Admin\Orders\ListTable->display() #13 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-includes/class-wp-hook.php(324): Automattic\WooCommerce\Internal\Admin\Orders\PageController->output() #14 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters() #15 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-includes/plugin.php(517): WP_Hook->do_action() #16 /home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-admin/admin.php(259): do_action() #17 {main} thrown in?/home/952458.cloudwaysapps.com/pbbxsenfpt/public_html/wp-content/plugins/packeta/src/Packetery/Module/ModuleHelper.php?on line?283

    Thread Starter werfewr

    (@werfewr)

    Anyone?

    werfewr

    (@werfewr)

    Same issue

    Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the woocommerce-gateway-stripe domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. (This message was added in version 6.7.0.)+

    But, I use TranslatePress plugin. But this is not related to translation plugin, but to WordPress itself. Please fix this.

    Thread Starter werfewr

    (@werfewr)

    Super Awesome answer, it works perfectly! THANKYOU!

    Thread Starter werfewr

    (@werfewr)

    Hello, our site is https://kadu.store

    The main problem is, that when Google Pay is active, then the button to buy is displayed before the process of filling the shipping info. Google Pay automatically adds the address from Google Account and user can’t select the packeta pick up box etc.

    Thanks for your time,

    Ale?

    Thread Starter werfewr

    (@werfewr)

    thanks

    Thread Starter werfewr

    (@werfewr)

    We are in Czech republic, the webhosting is also in Czech republic. Not sure why fluent forms try to authenticate from RU.

    Thread Starter werfewr

    (@werfewr)

    And it is not resolved, please reopen this issue.

    Thread Starter werfewr

    (@werfewr)

    Hello Amimul, it’s not from our side. But from the side of Fluent SMTP. When the Fluent Forms Plugin tries to connect to Microsoft 365 from WordPress dashboard to authorize, then Azure AD logging logs it as connection from Russia, which is not allowed in our Organization, so we cant use it. I am not sure, why your plugin try to connect to Our Microsoft 365 from Russia. You tell me please.

    Thread Starter werfewr

    (@werfewr)

    We have found that FluentSMTP is trying to connect from Russia, which is blocked for security reasons.

    Location is:
    Nizhnevartovsk, Khanty-Mansiyskiy Avtonomnnyy Okrug, RU

    Please, can you make the connection outside of Russia?

    Thread Starter werfewr

    (@werfewr)

    Hello,

    at 1st – this issue is not persistent. It happens like 3 times in month, so I will need to wait till it happen to be logged into the logs. However logging of stripe is working. I already saw declined cards.

    2nd) We do not have othe payment methods than Stripe and Bank transfer.

    3rd) Here is the system report:

    `
    ### WordPress Environment ###
    
    WordPress address (URL): https://kadu.store
    Site address (URL): https://kadu.store
    WC Version: 8.5.2
    REST API Version: ? 8.5.2
    WC Blocks Version: ? 11.8.0-dev
    Action Scheduler Version: ? 3.7.1
    Log Directory Writable: ?
    WP Version: 6.4.3
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    WP Cron: –
    Language: cs_CZ
    External object cache: ?
    
    ### Server Environment ###
    
    Server Info: Apache/2.4.58 (Debian)
    PHP Version: 8.0.30
    PHP Post Max Size: 100 MB
    PHP Time Limit: 300
    PHP Max Input Vars: 10000
    cURL Version: 7.64.0
    OpenSSL/1.1.1n
    
    SUHOSIN Installed: –
    MySQL Version: 10.4.20-MariaDB-1:10.4.20+maria~buster-log
    Max Upload Size: 100 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?
    
    ### Database ###
    
    WC Database Version: 8.5.2
    WC Database Prefix: wph_
    Celková velikost databáze: 502.62MB
    Velikost dat databáze: 302.15MB
    Velikost indexu databáze: 200.47MB
    wph_woocommerce_sessions: Data: 3.02MB + Index: 0.06MB + Engine InnoDB
    wph_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wph_woocommerce_order_items: Data: 3.52MB + Index: 1.52MB + Engine InnoDB
    wph_woocommerce_order_itemmeta: Data: 36.56MB + Index: 20.06MB + Engine InnoDB
    wph_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wph_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_woocommerce_payment_tokenmeta: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    wph_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    fin_costs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    fin_inventory: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    fin_purchase_orders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    fin_taxpaid: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    fin_transfers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    fin_vendors: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_acfw_loyalprog_entries: Data: 0.38MB + Index: 0.00MB + Engine InnoDB
    wph_acfw_store_credits: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
    wph_acfw_virtual_coupons: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_actionscheduler_actions: Data: 3.05MB + Index: 1.20MB + Engine InnoDB
    wph_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_actionscheduler_logs: Data: 4.08MB + Index: 3.33MB + Engine InnoDB
    wph_bv_fw_requests: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_bv_ip_store: Data: 0.30MB + Index: 0.23MB + Engine InnoDB
    wph_bv_lp_requests: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_comments: Data: 11.52MB + Index: 9.09MB + Engine InnoDB
    wph_duplicator_pro_entities: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_duplicator_pro_packages: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_ff_scheduled_actions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_fluentform_draft_submissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_fluentform_entry_details: Data: 0.13MB + Index: 0.00MB + Engine InnoDB
    wph_fluentform_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_fluentform_form_analytics: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_fluentform_form_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_fluentform_logs: Data: 0.44MB + Index: 0.00MB + Engine InnoDB
    wph_fluentform_order_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_fluentform_submissions: Data: 0.30MB + Index: 0.00MB + Engine InnoDB
    wph_fluentform_submission_meta: Data: 0.16MB + Index: 0.00MB + Engine InnoDB
    wph_fluentform_subscriptions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_fluentform_transactions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_fsmpt_email_logs: Data: 9.02MB + Index: 0.00MB + Engine InnoDB
    wph_imagify_files: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    wph_imagify_folders: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_litespeed_img_optm: Data: 2.52MB + Index: 0.80MB + Engine InnoDB
    wph_litespeed_img_optming: Data: 0.17MB + Index: 0.22MB + Engine InnoDB
    wph_mailchimp_carts: Data: 0.30MB + Index: 0.00MB + Engine InnoDB
    wph_mailchimp_jobs: Data: 0.09MB + Index: 0.00MB + Engine InnoDB
    wph_mclean_refs: Data: 0.11MB + Index: 0.00MB + Engine InnoDB
    wph_mclean_scan: Data: 0.09MB + Index: 0.02MB + Engine InnoDB
    wph_ms_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_options: Data: 5.47MB + Index: 1.16MB + Engine InnoDB
    wph_packetery_carrier: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_packetery_customs_declaration: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_packetery_customs_declaration_item: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_packetery_log: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
    wph_packetery_order: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
    wph_pmxe_exports: Data: 0.16MB + Index: 0.00MB + Engine InnoDB
    wph_pmxe_google_cats: Data: 0.38MB + Index: 0.00MB + Engine InnoDB
    wph_pmxe_posts: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
    wph_pmxe_templates: Data: 0.14MB + Index: 0.00MB + Engine InnoDB
    wph_postmeta: Data: 118.56MB + Index: 60.98MB + Engine InnoDB
    wph_posts: Data: 7.47MB + Index: 4.89MB + Engine InnoDB
    wph_rank_math_internal_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_rank_math_internal_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_shortpixel_queue: Data: 0.22MB + Index: 0.41MB + Engine InnoDB
    wph_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_termmeta: Data: 0.50MB + Index: 0.47MB + Engine InnoDB
    wph_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_term_relationships: Data: 0.19MB + Index: 0.11MB + Engine InnoDB
    wph_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_tm_taskmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_tm_tasks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_toret_ppl_log: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_tppl_package_numbers: Data: 0.08MB + Index: 0.00MB + Engine InnoDB
    wph_trp_dictionary_cs_cz_en_gb: Data: 2.52MB + Index: 1.69MB + Engine InnoDB
    wph_trp_dictionary_cs_cz_en_us: Data: 1.52MB + Index: 0.44MB + Engine InnoDB
    wph_trp_gettext_cs_cz: Data: 1.52MB + Index: 0.42MB + Engine InnoDB
    wph_trp_gettext_en_gb: Data: 0.50MB + Index: 0.36MB + Engine InnoDB
    wph_trp_gettext_en_us: Data: 0.30MB + Index: 0.22MB + Engine InnoDB
    wph_trp_original_meta: Data: 1.52MB + Index: 0.75MB + Engine InnoDB
    wph_trp_original_strings: Data: 2.52MB + Index: 1.52MB + Engine InnoDB
    wph_usermeta: Data: 6.45MB + Index: 6.59MB + Engine InnoDB
    wph_users: Data: 0.39MB + Index: 0.36MB + Engine InnoDB
    wph_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wcpdf_invoice_number_2022: Data: 0.11MB + Index: 0.00MB + Engine InnoDB
    wph_wcpdf_invoice_number_2023: Data: 0.14MB + Index: 0.00MB + Engine InnoDB
    wph_wcpdf_packing_slip_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wc_admin_notes: Data: 0.11MB + Index: 0.00MB + Engine InnoDB
    wph_wc_admin_note_actions: Data: 0.06MB + Index: 0.02MB + Engine InnoDB
    wph_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wc_customer_lookup: Data: 1.52MB + Index: 0.45MB + Engine InnoDB
    wph_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_wc_orders: Data: 4.52MB + Index: 7.25MB + Engine InnoDB
    wph_wc_orders_meta: Data: 34.56MB + Index: 53.30MB + Engine InnoDB
    wph_wc_order_addresses: Data: 3.52MB + Index: 6.06MB + Engine InnoDB
    wph_wc_order_composite_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    wph_wc_order_coupon_lookup: Data: 0.27MB + Index: 0.33MB + Engine InnoDB
    wph_wc_order_operational_data: Data: 2.52MB + Index: 1.80MB + Engine InnoDB
    wph_wc_order_product_lookup: Data: 2.52MB + Index: 3.63MB + Engine InnoDB
    wph_wc_order_stats: Data: 2.52MB + Index: 1.06MB + Engine InnoDB
    wph_wc_order_tax_lookup: Data: 1.52MB + Index: 0.52MB + Engine InnoDB
    wph_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_wc_product_meta_lookup: Data: 0.14MB + Index: 0.31MB + Engine InnoDB
    wph_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_wfblockediplog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wfblocks7: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wph_wfcrawlers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wfhits: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wph_wfhoover: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_wfissues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wph_wflivetraffichuman: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_wflocs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wflogins: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_wfls_2fa_secrets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wph_wfls_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wfnotifications: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wfpendingissues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wph_wfreversecache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wfsnipcache: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wph_wfstatus: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_wftrafficrates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wlr_earn_campaign: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    wph_wlr_earn_campaign_transaction: Data: 1.52MB + Index: 1.42MB + Engine InnoDB
    wph_wlr_expire_points: Data: 0.44MB + Index: 1.03MB + Engine InnoDB
    wph_wlr_levels: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    wph_wlr_logs: Data: 3.52MB + Index: 0.58MB + Engine InnoDB
    wph_wlr_points_ledger: Data: 1.52MB + Index: 0.75MB + Engine InnoDB
    wph_wlr_referral: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wph_wlr_rewards: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wph_wlr_reward_transactions: Data: 0.05MB + Index: 0.08MB + Engine InnoDB
    wph_wlr_users: Data: 0.36MB + Index: 0.58MB + Engine InnoDB
    wph_wlr_user_rewards: Data: 0.11MB + Index: 0.11MB + Engine InnoDB
    wph_woocommerce_bis_activity: Data: 1.52MB + Index: 0.91MB + Engine InnoDB
    wph_woocommerce_bis_notifications: Data: 0.27MB + Index: 0.55MB + Engine InnoDB
    wph_woocommerce_bis_notificationsmeta: Data: 1.52MB + Index: 0.45MB + Engine InnoDB
    wph_wpfm_backup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wpgb_cache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wph_wpgb_cards: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_wpgb_facets: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wph_wpgb_grids: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wph_wpgb_index: Data: 0.09MB + Index: 0.11MB + Engine InnoDB
    wph_wpify_vocative: Data: 2.52MB + Index: 0.00MB + Engine InnoDB
    wph_wpify_woo_log: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
    wph_wpmailsmtp_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_bv_fw_requests: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_bv_ip_store: Data: 0.28MB + Index: 0.16MB + Engine InnoDB
    wp_bv_lp_requests: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_comments: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_options: Data: 0.09MB + Index: 0.03MB + Engine InnoDB
    wp_postmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_posts: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_usermeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    
    ### Post Type Counts ###
    
    acf-field: 58
    acf-field-group: 7
    acf-post-type: 1
    art: 1
    attachment: 6650
    ct_template: 24
    global_product_addon: 1
    language_switcher: 4
    nav_menu_item: 44
    page: 14
    pewc_field: 2
    pewc_group: 1
    pewc_product_extra: 1
    post: 8
    product: 542
    product_variation: 53
    product-feed: 2
    revision: 98
    shop_coupon: 753
    shop_order: 9250
    shop_order_refund: 2510
    wp_block: 1
    wp_global_styles: 1
    
    ### Security ###
    
    Secure connection (HTTPS): ?
    Hide errors from visitors: ?
    
    ### Active Plugins (40) ###
    
    FluentSMTP: Autor: FluentSMTP & WPManageNinja Team – 2.2.71
    Toret PPL: Autor: Toret.cz – 2.11.0
    Advanced Custom Fields PRO: Autor: WP Engine – 6.2.6.1
    FiboSearch - AJAX Search for WooCommerce: Autor: FiboSearch Team – 1.27.0
    The SEO Framework: Autor: The SEO Framework Team – 5.0.4
    Product Feed Manager for WooCommerce: Autor: RexTheme – 7.3.26
    Breeze: Autor: Cloudways – 2.1.3
    Cleanup Action Scheduler: Autor: Media Uganda – 1.2.0
    Custom PDF Template extension: Autor: Alexandre Faustino – 1.0.0
    GTM4WP - A Google Tag Manager (GTM) plugin for WordPress: Autor: Thomas Geiger – 1.20
    Advanced Scripts: Autor: Clean Plugins – 2.5.2
    Facebook pro WooCommerce: Autor: Facebook – 3.1.9
    Fluent Forms: Autor: Contact Form - WPManageNinja LLC – 5.1.9
    Fluent Forms Pro Add On Pack: Autor: Fluent Forms – 5.1.7
    Lightbox for Gallery & Image Block: Autor: Johannes Kinast  – 1.13
    Imagify: Autor: Imagify – Optimize Images & Convert WebP – 2.1.3.1
    Loco Translate: Autor: Tim Whitlock – 2.6.6
    Mailchimp for WooCommerce: Autor: Mailchimp – 3.6
    MalCare WordPress Security Plugin - Malware Scanner, Cleaner, Security Firewall: Autor: MalCare Security – 5.47
    OxyNinja: Autor: OxyNinja – 3.5.3
    OxyExtras: Autor: OxyExtras – 1.4.3
    Oxygen Elements for WooCommerce: Autor: Soflyy – 2.0
    Oxygen: Autor: Soflyy – 4.7
    Zásilkovna: Autor: Zásilkovna s.r.o. – 1.6.4
    Editor u?ivatelskych rolí: Autor: Vladimir Garagulya – 4.64.1
    Checkout Field Editor for WooCommerce: Autor: ThemeHigh – 2.0.0
    Upozornění WooCommerce zpět na skladě: Autor: WooCommerce – 1.6.4
    Kompozitní produkty WooCommerce: Autor: WooCommerce – 8.10.3
    WooCommerce Conditional Shipping and Payments: Autor: WooCommerce – 1.14.4
    WooCommerce Stripe Gateway: Autor: WooCommerce – 7.9.2
    PDF Invoices & Packing Slips for WooCommerce: Autor: WP Overnight – 3.7.7
    WooCommerce Product Add-ons: Autor: WooCommerce – 6.4.7
    WooCommerce: Autor: Automattic – 8.5.2
    WP All Export Pro: Autor: Soflyy – 1.8.6
    WP Grid Builder - Caching: Autor: Lo?c Blascos – 1.1.0
    WP Grid Builder - Oxygen: Autor: Lo?c Blascos – 1.1.2
    WP Grid Builder: Autor: Lo?c Blascos – 1.8.2
    WPLoyalty - WooCommerce Loyalty Points, Rewards and Referral Pro: Autor: Wployalty – 1.2.8
    WP All Export - WooCommerce Export Add-On Pro: Autor: Soflyy – 1.0.9
    WPify Woo: Autor: WPify s.r.o. – 4.0.8
    
    ### Inactive Plugins (0) ###
    
    
    ### Dropin Plugins (2) ###
    
    advanced-cache.php: advanced-cache.php
    object-cache.php: Object Cache Pro (Drop-in)
    
    ### Must Use Plugins (1) ###
    
    Object Cache Pro (MU): Autor: Rhubarb Group – 1.20.2
    
    ### Settings ###
    
    API Enabled: –
    Force SSL: –
    Currency: CZK (K?)
    Currency Position: right_space
    Thousand Separator: .
    Decimal Separator: ,
    Number of Decimals: 0
    Taxonomies: Product Types: composite (composite)
    external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)
    woosb (woosb)
    woosg (woosg)
    
    Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
    exclude-from-search (exclude-from-search)
    featured (featured)
    outofstock (outofstock)
    rated-1 (rated-1)
    rated-2 (rated-2)
    rated-3 (rated-3)
    rated-4 (rated-4)
    rated-5 (rated-5)
    
    Connected to Woo.com: –
    Enforce Approved Product Download Directories: –
    HPOS feature screen enabled: ?
    HPOS feature enabled: ?
    Order datastore: Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore
    HPOS data sync enabled: ?
    
    ### WC Pages ###
    
    Obchod: #787 - /shop/
    Ko?ík: #240 - /kosik/
    Pokladna: #241 - /pokladna/
    M?j ú?et: #242 - /muj-ucet/
    Obchodní podmínky: #243 - /obchodni-podminky/
    
    ### Theme ###
    
    Name: twentytwentyone
    Version: (aktualizace na verzi 2.1 je dostupná)
    Author URL: 
    Child Theme: ? – Pokud upravujete WooCommerce ?ablonu
    kterou jste nevytvo?ili
    doporu?ujeme pou?ít odvozenou ?ablonu. Viz Jak vytvo?it odvozenou ?ablonu (anglicky)
    
    WooCommerce Support: ?
    
    ### Templates ###
    
    Overrides: –
    
    ### Back In Stock ###
    
    Database Version: 1.6.4
    Loopback Test: ? Test zpětné smy?ky se nezda?il.
    
    ### Composite Products ###
    
    Database Version: 8.10.3
    Loopback Test: ?
    Template Overrides: –
    
    ### Admin ###
    
    Enabled Features: activity-panels
    analytics
    product-block-editor
    coupons
    core-profiler
    customer-effort-score-tracks
    import-products-task
    experimental-fashion-sample-products
    shipping-smart-defaults
    shipping-setting-tour
    homescreen
    marketing
    mobile-app-banner
    navigation
    onboarding
    onboarding-tasks
    product-variation-management
    product-virtual-downloadable
    product-external-affiliate
    product-grouped
    remote-inbox-notifications
    remote-free-extensions
    payment-gateway-suggestions
    shipping-label-banner
    subscriptions
    store-alerts
    transient-notices
    woo-mobile-welcome
    wc-pay-promotion
    wc-pay-welcome-page
    
    Disabled Features: customize-store
    minified-js
    new-product-management-experience
    product-linked
    settings
    async-product-editor-category-field
    
    Daily Cron: ? Next scheduled: 2024-02-09 21:14:39 +01:00
    Options: ?
    Notes: 159
    Onboarding: completed
    
    ### Action Scheduler ###
    
    Zru?eno: 3
    Oldest: 2024-02-04 19:21:38 +0000
    Newest: 2024-02-08 21:12:30 +0000
    
    Dokon?eno: 2?615
    Oldest: 2024-02-02 09:40:03 +0000
    Newest: 2024-02-09 09:40:12 +0000
    
    Selhalo: 956
    Oldest: 2023-10-19 18:10:02 +0000
    Newest: 2024-02-09 08:10:05 +0000
    
    ?ekající: 12
    Oldest: 2024-02-09 10:07:55 +0000
    Newest: 2024-12-31 23:00:01 +0000
    
    
    ### Status report information ###
    
    Generated at: 2024-02-09 10:42:00 +01:00
    `
    Thread Starter werfewr

    (@werfewr)

    I have disabled the ASE plugin and installed WP Rocket cache and it doesn’t work again. That’s dissapointing.

Viewing 15 replies - 1 through 15 (of 46 total)