Forum Replies Created

Viewing 15 replies - 1 through 15 (of 19 total)
  • Thread Starter Kristián Filo

    (@kristianfilo)

    Hi @qtwrk , sorry for late reply. I’ll try to enable the debug log with large size treshold.

    Just a question though, could enabling the log and setting its limit above 300 MB actually slow down the site? (disk space is not an issue, but I am worried about the speed)

    Thread Starter Kristián Filo

    (@kristianfilo)

    Super, ?akujem! ??

    Thread Starter Kristián Filo

    (@kristianfilo)

    Hi @qtwrk , I can confirm the issue still persists after disabling HTML minify.

    Thread Starter Kristián Filo

    (@kristianfilo)

    I disabled it. I’ll keep an eye on it and will update the thread with either result. Could you please leave the thread opened until then? Thank you.

    Thread Starter Kristián Filo

    (@kristianfilo)

    No, I’ve noticed it fails at random parts of the page (not only during Complianz banner rendering).

    I don’t see any relevant messages in error log, except for this one message from today:

    Cron reschedule event error for hook: litespeed_task_crawler, Error code: could_not_set, Error message: The cron event list could not be saved.., Data: {"schedule":"litespeed_crawl_filter","args":[],"interval":120}

    I don’t think output buffering conflict is the issue, it would probably be more frequent. The pages are OK in 99% of cases, I’m only noticing couple of broken pages per week.

    PHP termination seems reasonable, is there any way to prevent this? I mean – to only store the cache if the page was rendered and built completely? I have Crawler enabled with these settings:

    • 500 microseconds delay
    • 500 seconds run duration
    • 120 seconds interval between runs
    • 86400 seconds (24 hrs) crawl interval
    • 4 threads
    • 30 seconds timeout
    • 2 server load limit

    Some data from the last (active) crawler that might be helpful:

    • Last complete run time for all crawlers: 16014 seconds
    • Run time for previous crawler: 16014 seconds
    • Current server load: 1.15

    I am running a VPS with 32 PHP threads available (512 MB of RAM allocated for each). These are my PHP settings (which might be relevant):

    • max_execution_time: 600 s
    • max_input_time: 60 s
    • max_input_vars: 5000
    Thread Starter Kristián Filo

    (@kristianfilo)

    @qtwrk I’ve stumbled upon the broken category page again and I’ve compared the HTML source.

    The broken page is literally incomplete, it is trimmed at a random position, in the middle of a <a> link (its text) and after that there’s nothing. The text of that <a> link doesn’t even contain any special characters or anything. It seems like the build process of that static HTML page crashed at some point for some reason.

    Anyway, the part where it crashes is within the Complianz cookie banner. I’ve tried adding ‘complianz.js’ to the JS excludes, but I think this is random (and other broken pages are probably rendered up until a different part of the code).

    Anyway, some optimized CSS/JS code is being loaded after this part of the code, so that is why it’s missing from these broken pages.

    Is there a way to detect if page was optimized/built correctly and if not, attempt to optimize/cache it again?

    Thread Starter Kristián Filo

    (@kristianfilo)

    Hi @qtwrk ,

    this was not the case, but thanks anyway. I’ve figured out what is causing the problem.

    I have WooCommerce geolocation enabled (MaxMind) and whenever I set default customer location to Geolocation, or Geolocation (with page caching support), it causes this error in Litespeed Cache.

    If I set it to “No location by default” or “Shop base address”, it works well. Is there a way to use private caching with Woo geolocation enabled?

    Thank you.

    Thread Starter Kristián Filo

    (@kristianfilo)

    Sure. the template is essentially incorrect. Last two columns in product details table should be Price (unit, e.g. 5,20 €) and Line subtotal (quantity sum, e.g. 10,40 €). However, both columns are displaying the line_total price, so not only the tax is not correctly displayed, also the quantity is not considered.

    Look for class-cartflows-ca-email-schedule.php file (lines 313 and 314) and replace them with these lines:

    <td style="' . $style . '">' . wc_price( $cart_item['line_total'] + $cart_item['line_tax'] ) . '</td>
    <td style="' . $style . '" >' . wc_price( ( $cart_item['line_total'] + $cart_item['line_tax'] ) * $cart_item['quantity'] ) . '</td>

    This is a temporary and a bit hacky solution ($cart_item doesn’t seem to contain correct tax data), which might get removed once the plugin is updated. It should be fixed by the developers, but this code should work temporarily.

    Thread Starter Kristián Filo

    (@kristianfilo)

    Hi @ericberkhinfand @bryceadams ,

    thank you, I’ve sent you an e-mail.

    Thread Starter Kristián Filo

    (@kristianfilo)

    Hi, it works great in the new release. Thank you. ??

    Thread Starter Kristián Filo

    (@kristianfilo)

    Zdravím @sarooras

    v súbore:
    wp-content\plugins\invelity-mygls-connect\classes\class.invelityMyGLS.php
    na riadku ?. 309 – 319 máte funkciu filterShippingAddress. Nahra?te ju celú touto funkciou:

    private function filterShippingAddress($order)
    {
        if (!defined('WC_VERSION')) {
            return false;
        }
        if (version_compare(WC_VERSION, '3.0', '<')) {
            return $order->shipping_address_1;
        } else {
            $shipping_address = $order->get_shipping_address_1();
            if($order->get_shipping_address_2() && !empty($order->get_shipping_address_2())) {
                $shipping_address .= ', ' . $order->get_shipping_address_2();
            }
            return $shipping_address;
        }
    }
    Thread Starter Kristián Filo

    (@kristianfilo)

    Hi @payalrajyaguru

    yes, I’ve already done it, but thanks anyway, looking forward for the next release when this is resolved permanently.

    Yes, I am using PRO version, I will use the contact form on your Docs page in the future.

    Thank you.

    Thread Starter Kristián Filo

    (@kristianfilo)

    Hi @aahulsebos ,

    it seems to work. Thank you very much!

    Best regards

    Thread Starter Kristián Filo

    (@kristianfilo)

    Hi @maykato

    This filter is exactly what I was looking for but I somehow didn’t manage to find it. Thank you very much!

    Thread Starter Kristián Filo

    (@kristianfilo)

    Hi, sure, here are the screenshots:

    Here’s the system report – not sure if relevant though because this is the native WooCommerce behaviour and I am basically looking for a filter or something that would override that. Please note that this is a report from my local development environment, that could generate numerous error that are not present on production.

    
    ### WordPress Environment ###
    
    WordPress address (URL): https://kojo.local
    Site address (URL): https://kojo.local
    WC Version: 5.5.2
    REST API Version: ? 5.5.2
    WC Blocks Version: ? 5.3.3
    Action Scheduler Version: ? 3.2.1
    WC Admin Version: ? 2.4.4
    Log Directory Writable: ? To allow logging
    make C:\wamp64\www\kojo/wp-content/uploads/wc-logs/ writable or define a custom WC_LOG_DIR.
    
    WP Version: ? 5.7.4 - There is a newer version of WordPress available (5.8.2)
    WP Multisite: –
    WP Memory Limit: 512 MB
    WP Debug Mode: –
    WP Cron: ?
    Language: en_US
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: Apache/2.4.47 (Win64) PHP/7.4.19
    PHP Version: 7.4.19
    PHP Post Max Size: 256 MB
    PHP Time Limit: 300
    PHP Max Input Vars: 5000
    cURL Version: 7.70.0
    OpenSSL/1.1.1k
    
    SUHOSIN Installed: –
    MySQL Version: 5.7.21
    Max Upload Size: 128 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?
    
    ### Database ###
    
    WC Database Version: 5.5.2
    WC Database Prefix: swp_
    Total Database Size: 232.65MB
    Database Data Size: 157.96MB
    Database Index Size: 74.69MB
    swp_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    swp_woocommerce_order_items: Data: 0.30MB + Index: 0.11MB + Engine InnoDB
    swp_woocommerce_order_itemmeta: Data: 3.52MB + Index: 5.03MB + Engine InnoDB
    swp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    swp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_actionscheduler_actions: Data: 0.23MB + Index: 0.34MB + Engine InnoDB
    swp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_actionscheduler_logs: Data: 0.20MB + Index: 0.16MB + Engine InnoDB
    swp_adtribes_my_conversions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_aelia_dismissed_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_aiowps_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_aiowps_failed_logins: Data: 0.23MB + Index: 0.00MB + Engine InnoDB
    swp_aiowps_global_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_aiowps_login_activity: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    swp_aiowps_login_lockdown: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    swp_aiowps_permanent_block: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_cli_cookie_scan: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_cli_cookie_scan_categories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_cli_cookie_scan_cookies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_cli_cookie_scan_url: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_cli_scripts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_comments: Data: 1.52MB + Index: 0.98MB + Engine InnoDB
    swp_feedmanager_channel: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_feedmanager_country: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_feedmanager_feed_status: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_feedmanager_field_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_feedmanager_product_feed: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_feedmanager_product_feedmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_feedmanager_source: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_gglcptch_allowlist: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_icl_content_status: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_icl_core_status: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_icl_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_icl_languages: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_icl_languages_translations: Data: 0.20MB + Index: 0.13MB + Engine InnoDB
    swp_icl_locale_map: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_icl_message_status: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_icl_mo_files_domains: Data: 0.11MB + Index: 0.05MB + Engine InnoDB
    swp_icl_node: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_icl_reminders: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_icl_strings: Data: 2.52MB + Index: 2.97MB + Engine InnoDB
    swp_icl_string_batches: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_icl_string_packages: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    swp_icl_string_pages: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_icl_string_positions: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
    swp_icl_string_status: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_icl_string_translations: Data: 4.52MB + Index: 3.03MB + Engine InnoDB
    swp_icl_string_urls: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_icl_translate: Data: 14.52MB + Index: 1.52MB + Engine InnoDB
    swp_icl_translate_job: Data: 0.08MB + Index: 0.05MB + Engine InnoDB
    swp_icl_translations: Data: 1.52MB + Index: 3.80MB + Engine InnoDB
    swp_icl_translation_batches: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_icl_translation_downloads: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_icl_translation_status: Data: 26.52MB + Index: 0.22MB + Engine InnoDB
    swp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_newsletter: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_newsletter_emails: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_newsletter_sent: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_newsletter_stats: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_newsletter_user_logs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_nf3_actions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_nf3_action_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_nf3_chunks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_nf3_fields: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_nf3_field_meta: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
    swp_nf3_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_nf3_form_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_nf3_objects: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_nf3_object_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_nf3_relationships: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_nf3_upgrades: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_options: Data: 8.28MB + Index: 0.38MB + Engine InnoDB
    swp_pmxi_files: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_pmxi_history: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_pmxi_images: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
    swp_pmxi_imports: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_pmxi_posts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_pmxi_templates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_postmeta: Data: 36.58MB + Index: 24.06MB + Engine InnoDB
    swp_posts: Data: 7.52MB + Index: 3.69MB + Engine InnoDB
    swp_redirection_404: Data: 1.02MB + Index: 0.06MB + Engine InnoDB
    swp_redirection_groups: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_redirection_items: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    swp_redirection_logs: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    swp_revslider_css: Data: 0.13MB + Index: 0.00MB + Engine InnoDB
    swp_revslider_css_bkp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_revslider_layer_animations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_revslider_layer_animations_bkp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_revslider_navigations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_revslider_navigations_bkp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_revslider_sliders: Data: 0.09MB + Index: 0.00MB + Engine InnoDB
    swp_revslider_sliders_bkp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_revslider_slides: Data: 0.48MB + Index: 0.00MB + Engine InnoDB
    swp_revslider_slides_bkp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_revslider_static_slides: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_revslider_static_slides_bkp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_sbi_instagram_feeds_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_sbi_instagram_posts: Data: 0.42MB + Index: 0.00MB + Engine InnoDB
    swp_stock_log: Data: 0.23MB + Index: 0.00MB + Engine InnoDB
    swp_strong_views: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_termmeta: Data: 0.11MB + Index: 0.16MB + Engine InnoDB
    swp_terms: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
    swp_term_relationships: Data: 1.52MB + Index: 1.52MB + Engine InnoDB
    swp_term_taxonomy: Data: 0.11MB + Index: 0.09MB + Engine InnoDB
    swp_trp_gettext_sk_sk: Data: 25.56MB + Index: 19.63MB + Engine InnoDB
    swp_usermeta: Data: 0.11MB + Index: 0.03MB + Engine InnoDB
    swp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    swp_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wc_admin_notes: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    swp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wc_customer_lookup: Data: 0.14MB + Index: 0.09MB + Engine InnoDB
    swp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_wc_order_product_lookup: Data: 0.33MB + Index: 0.38MB + Engine InnoDB
    swp_wc_order_stats: Data: 0.19MB + Index: 0.22MB + Engine InnoDB
    swp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_wc_product_meta_lookup: Data: 0.38MB + Index: 0.75MB + Engine InnoDB
    swp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_wfblockediplog: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wfblocks7: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    swp_wfconfig: Data: 0.48MB + Index: 0.00MB + Engine InnoDB
    swp_wfcrawlers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wffilechanges: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wffilemods: Data: 6.52MB + Index: 0.00MB + Engine InnoDB
    swp_wfhits: Data: 0.08MB + Index: 0.05MB + Engine InnoDB
    swp_wfhoover: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_wfissues: Data: 0.11MB + Index: 0.06MB + Engine InnoDB
    swp_wfknownfilelist: Data: 3.52MB + Index: 0.00MB + Engine InnoDB
    swp_wflivetraffichuman: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_wflocs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wflogins: Data: 0.11MB + Index: 0.03MB + Engine InnoDB
    swp_wfls_2fa_secrets: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_wfls_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wfnotifications: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wfpendingissues: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    swp_wfreversecache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wfsnipcache: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    swp_wfstatus: Data: 0.13MB + Index: 0.09MB + Engine InnoDB
    swp_wftrafficrates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wpforms_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wpgmza: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wpgmza_circles: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wpgmza_maps: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wpgmza_polygon: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wpgmza_polylines: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wpgmza_rectangles: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wt_iew_action_history: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wt_iew_cron: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wt_iew_ftp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_wt_iew_mapping_template: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    swp_yith_wcwl: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_yith_wcwl_lists: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_yoast_indexable: Data: 4.52MB + Index: 2.95MB + Engine InnoDB
    swp_yoast_indexable_hierarchy: Data: 0.06MB + Index: 0.05MB + Engine InnoDB
    swp_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    swp_yoast_primary_term: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    swp_yoast_seo_links: Data: 0.27MB + Index: 0.27MB + Engine InnoDB
    swp_yoast_seo_meta: Data: 0.08MB + Index: 0.00MB + Engine InnoDB
    wp_currencies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    
    ### Post Type Counts ###
    
    attachment: 4736
    cookielawinfo: 6
    custom_css: 2
    mc4wp-form: 8
    nav_menu_item: 100
    oembed_cache: 18
    page: 101
    post: 27
    post-wcode: 14
    product: 764
    product_variation: 2569
    product-feed: 1
    revision: 420
    shipping_condition: 5
    shop_coupon: 92
    shop_order: 1334
    shop_order_refund: 118
    ufaq: 6
    wpcf7_contact_form: 16
    wpforms: 1
    wpm-testimonial: 1
    
    ### Security ###
    
    Secure connection (HTTPS): ?
    					Your store is not using HTTPS. Learn more about HTTPS and SSL Certificates.
    Hide errors from visitors: ?
    
    ### Active Plugins (70) ###
    
    WPML Multilingual CMS: by OnTheGoSystems – 4.4.10
    Redux: by Redux.io + Dovy Paukstys – 4.1.18
    All In One WP Security: by Tips and Tricks HQ
    Peter Petreski
    Ruhul
    Ivy – 4.4.8
    
    WooCommerce Product Feed Manager: by RexTheme – 5.39
    Classic Editor: by WordPress Contributors – 1.6
    Contact Form 7 Multilingual: by OnTheGoSystems – 1.0.2
    Contact Form 7 Captcha: by 247wd – 0.0.8
    Contact Form 7: by Takayuki Miyoshi – 5.2.2
    GDPR Cookie Consent: by WebToffee – 2.0.3
    Custom Order Numbers for WooCommerce: by Tyche Softwares – 1.2.10
    Drag and Drop Multiple File Upload - Contact Form 7: by Glen Don L. Mongaya – 1.3.5.5.1
    Duplicate Page: by mndpsingh287 – 4.3
    Google Tag Manager for WordPress: by Thomas Geiger – 1.11.5
    Far Future Expiration Plugin: by Tips and Tricks HQ – 1.4
    Font Awesome: by Font Awesome – 4.0.0-rc21
    reCaptcha by BestWebSoft: by BestWebSoft – 1.59
    Header and Footer Scripts: by Digital Liberation – 2.2.1
    Smash Balloon Instagram Feed: by Smash Balloon – 2.4.6
    WPBakery Page Builder: by Michael M - WPBakery.com – 6.1
    Loco Translate: by Tim Whitlock – 2.4.3
    MC4WP: Mailchimp for WordPress: by ibericode – 4.8.1
    Meta Box: by MetaBox.io – 5.3.3
    Newsletter: by Stefano Lissa & The Newsletter Team – 6.8.7
    Ninja Forms: by Saturday Drive – 3.4.27
    Fonts Plugin | Google Fonts Typography: by Fonts Plugin – 2.1.9
    PixelYourSite: by PixelYourSite – 7.1.12
    Pohoda XML Export: by AHOiREKLAMA – 1.0.3
    Product CSV Import Export (BASIC): by WebToffee – 1.8.7
    Product Sales Report for WooCommerce: by Aspen Grove Studios – 1.5.1
    Rearrange Woocommerce Products: by Aslam Doctor – 2.3.1
    Redirect After Login: by marcelotorres – 0.1.9
    Redirection: by John Godley – 4.8
    Regenerate Thumbnails: by Alex Mills (Viper007Bond) – 3.1.3
    Slider Revolution: by ThemePunch – 6.2.1
    Samex Extra: by  – 1.0
    Samex Shortcodes: by  – 1.2
    Shortcode in Menus: by Gagan Deep Singh – 3.5.1
    Simple Share Buttons Adder: by Simple Share Buttons – 8.0.0
    Strong Testimonials: by MachoThemes – 2.50.2
    Compress JPEG & PNG images: by TinyPNG – 3.2.1
    Ultimate FAQ - WordPress Q&A Plugin: by Etoile Web Design – 1.9.8
    UpdraftPlus - Backup/Restore: by UpdraftPlus.Com
    DavidAnderson – 1.16.26
    
    YellowPencil Pro: by WaspThemes – 7.4.3
    Aelia Foundation Classes for WooCommerce: by Aelia – 2.1.13.210706
    Widget Importer & Exporter: by ChurchThemes.com – 1.6
    Braintree For WooCommerce: by Payment Plugins
    [email protected] – 3.2.21
    
    Product Feed PRO for WooCommerce: by AdTribes.io – 8.7.1
    Aelia Currency Switcher for WooCommerce: by Aelia – 4.12.0.210629
    WooCommerce Stripe Gateway: by WooCommerce – 5.3.0
    WooCommerce Multilingual: by OnTheGoSystems – 4.11.6
    WooCommerce Pay for Payment: by Karolína Vysko?ilová – 2.0.16
    WooCommerce PDF Invoices & Packing Slips: by Ewout Fernhout – 2.6.1
    WooCommerce Restricted Shipping and Payment Pro: by WPRuby – 2.2.2
    WooCommerce Stock Manager: by StoreApps – 2.4.0
    WooCommerce - Store Exporter Deluxe: by Visser Labs – 5.2
    WP All Import - WooCommerce Add-On: by Soflyy – 1.4.6
    WooCommerce: by Automattic – 5.5.2 (update to version 5.9.0 is available)
    WordPress Importer: by wordpressdotorg – 0.7
    Yoast SEO: by Team Yoast – 14.9
    WP All Import: by Soflyy – 3.5.4
    WP Fastest Cache: by Emre Vona – 0.9.1.6
    WP Google Maps: by WP Google Maps – 8.0.26
    Hide Dashboard Notifications: by BitofWP – 1.2.0
    WP Product Feed Manager: by Michel Jongbloed – 1.24.0
    MailChimp for WordPress Multilingual: by OnTheGoSystems – 0.0.3
    WPML String Translation: by OnTheGoSystems – 3.1.8
    WPML Translation Management: by OnTheGoSystems – 2.10.6
    Custom Product Tabs for WooCommerce: by YIKES
    Inc. – 1.7.3
    
    YITH WooCommerce Ajax Product Filter: by YITH – 3.11.1
    YITH WooCommerce Quick View: by YITH – 1.4.3
    
    ### Inactive Plugins (11) ###
    
    Braintree for WooCommerce Payment Gateway: by WooCommerce – 2.4.3 (update to version 2.6.2 is available)
    Free Shipping Bar for WooCommerce: by VillaTheme – 1.1.4.1
    Hide Shipping Method For WooCommerce: by theDotstore – 1.1.2
    Really Simple SSL: by Really Simple Plugins – 3.3.5
    Sales Report for WooCommerce: by BeRocket – 3.5.7.1
    WooCommerce - Store Exporter: by Visser Labs – 2.7
    WooCommerce Braintree Payment Gateway: by wp.insider – 1.9.4
    WooCommerce Price Based on Country (Basic): by Oscar Gare – 2.0.30
    WOOCS - WooCommerce Currency Switcher: by realmag777 – 2.3.4.1
    Wordfence Security: by Wordfence – 7.4.11
    YellowPencil: by WaspThemes – 7.3.1
    
    ### Settings ###
    
    API Enabled: –
    Force SSL: –
    Currency: EUR (€)
    Currency Position: right_space
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    Taxonomies: Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)
    
    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 WooCommerce.com: –
    
    ### WC Pages ###
    
    Shop base: #73 - /obchod/
    Cart: #8 - /kosik/
    Checkout: #77 - /pokladna/
    My account: ? Page does not contain the [woocommerce_my_account] shortcode.
    Terms and conditions: #1895 - /obchodne-podmienky/
    
    ### Theme ###
    
    Name: Samex
    Version: 2.0
    Author URL: https://snstheme.com
    Child Theme: ? – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme
    WooCommerce Support: ?
    
    ### Templates ###
    
    Archive Template: Your theme has a woocommerce.php file
    you will not be able to override the woocommerce/archive-product.php custom template since woocommerce.php has priority over archive-product.php. This is intended to prevent display issues.
    
    Overrides: SAMEX_new/woocommerce/archive-product.php
    SAMEX_new/woocommerce/cart\cross-sells.php
    SAMEX_new/woocommerce/cart\mini-cart.php
    SAMEX_new/woocommerce/content-product.php
    SAMEX_new/woocommerce/content-single-product.php
    SAMEX_new/woocommerce/loop\loop-end.php
    SAMEX_new/woocommerce/loop\loop-start.php
    SAMEX_new/woocommerce/loop\pagination.php
    SAMEX_new/woocommerce/single-product\add-to-cart\variable.php
    SAMEX_new/woocommerce/single-product\meta.php
    SAMEX_new/woocommerce/single-product\related.php
    SAMEX_new/woocommerce/single-product\tabs\tabs.php
    SAMEX_new/woocommerce/single-product\up-sells.php
    SAMEX_new/woocommerce/single-product.php
    
    ### Action Scheduler ###
    
    Complete: 768
    Oldest: 2021-11-15 10:02:54 +0100
    Newest: 2021-12-14 15:25:15 +0100
    
    Pending: 1
    Oldest: 2021-12-15 15:18:00 +0100
    Newest: 2021-12-15 15:18:00 +0100
    
    ### Templates ###
    
    Extended logging mode for Store Exporter Deluxe: ?Inactive?Turn on Logging mode
    Debugging mode for Store Exporter Deluxe: ?Inactive?Turn on Debugging mode
    Scheduled Export to FTP: ? The required FTP functions are not available; ftp_connect()
    ftp_get_option()
    ftp_set_option()
    ftp_login()
    ftp_raw()
    ftp_pasv()
    ftp_pwd()
    ftp_chdir()
    ftp_put()
    ftp_fput()
    ftp_size()
    ftp_delete(). Contact your hosting provider.
    
    Scheduled Export to SFTP: ? The required SFTP functions are not available; ssh2_connect()
    ssh2_auth_password()
    ssh2_sftp(). Contact your hosting provider.
    
    ### Status report information ###
    
    Generated at: 2021-12-14 15:33:55 +01:00
    

    Thank you.

    • This reply was modified 3 years, 3 months ago by Kristián Filo. Reason: fixed code tag
Viewing 15 replies - 1 through 15 (of 19 total)