Title: raphael24's Replies | WordPress.org

---

# raphael24

  [  ](https://wordpress.org/support/users/raphael24/)

 *   [Profile](https://wordpress.org/support/users/raphael24/)
 *   [Topics Started](https://wordpress.org/support/users/raphael24/topics/)
 *   [Replies Created](https://wordpress.org/support/users/raphael24/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/raphael24/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/raphael24/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/raphael24/engagements/)
 *   [Favorites](https://wordpress.org/support/users/raphael24/favorites/)

 Search replies:

## Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/page/2/#post-16634296)
 * Hi [@woonami](https://wordpress.org/support/users/woonami/), [@babylon1999](https://wordpress.org/support/users/babylon1999/),
   [@ihereira](https://wordpress.org/support/users/ihereira/) and [@xue28](https://wordpress.org/support/users/xue28/),
 * as recommended I got in touch with my hosting provider and asked the questions
   mentioned. There were no Corn errors or PHP errors on the site. After trying 
   several other things we finally added the following code to .htaccess and with
   that code the problem could be solved:
 *     ```wp-block-code
       Header always set Cache-Control: s-maxage=0
       RequestHeader unset Range
       <IfModule mod_headers.c>
           Header set Cache-Control "no-cache, no-store, must-revalidate"
           Header set Pragma "no-cache"
           Header set Expires 0
       </IfModule>
       <FilesMatch "\.(css|flv|gif|htm|html|ico|jpe|jpeg|jpg|js|mp3|mp4|png|pdf|swf|txt)$">
           <IfModule mod_expires.c>
               ExpiresActive Off
           </IfModule>
           <IfModule mod_headers.c>
               FileETag None
               Header unset ETag
               Header unset Pragma
               Header unset Cache-Control
               Header unset Last-Modified
               Header set Pragma "no-cache"
               Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
               Header set Expires "Thu, 1 Jan 1970 00:00:00 GMT"
           </IfModule>
       </FilesMatch>
       ```
   
 * So, as far as I understand, it had something to do with caching, what is now 
   enabled.
 * Thanks for all your support and effort!
 * Best regards, Raphael
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/page/2/#post-16599838)
 * Hi [@woonami](https://wordpress.org/support/users/woonami/)
 * yes, really strange… And yes, I have deleted and reinstalled WooCommerce plugin.
   I have deleted all other plugins except WooCommerce and WP-Staging. I use theme
   Storefront… The issue persists…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/page/2/#post-16585985)
 * Hi [@babylon1999](https://wordpress.org/support/users/babylon1999/)
 * okay, I understand that these jobs are not part of woocommerce and cannot cause
   this issue.
 * I tried this flushing of permalinks, but no success.
 * So I switched over to the mentioned file class-wc-customer-download-log-data-
   store.php. I recognized a difference to the version on GitHub. (Since I destroyed
   the working staging site during the “try and error”-process I don’t have a possibility
   to compare with this one anymore.) So there’s a difference in line 238 and 239(
   below in bold). In my version it is (starting at line 229)
 *     ```wp-block-code
       /**
       	 * Method to delete download logs for a given permission ID.
       	 *
       	 * @since 3.4.0
       	 * @param int $id download_id of the downloads that will be deleted.
       	 */
       	public function delete_by_permission_id( $id ) {
       		global $wpdb;
       		$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_downloadable_product_permissions WHERE permission_id = %d", $id ) );
       		// Delete related records in wc_download_log (aka ON DELETE CASCADE).
       		$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}wc_download_log WHERE permission_id = %d", $id ) );
       	}
       ```
   
 * I then deleted those lines 238 and 239: no success;
   I created a new file using
   the code from GitHub: no success.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/page/2/#post-16581815)
 * Hi [@ihereira](https://wordpress.org/support/users/ihereira/)
 * I proceeded as requested and waited one day. The pending actions regularly fail.
   I.e. oss_woocommerce_daily_cleanup: action failed via Admin List Table: Scheduled
   action for oss_woocommerce_daily_cleanup will not be executed as no callbacks
   are registered.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/page/2/#post-16574438)
 * Hi [@ihereira](https://wordpress.org/support/users/ihereira/)
 * I updated to version 7.5.0 and updated database as well. No change – still same
   behavior.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/#post-16570988)
 * Hi [@babylon1999](https://wordpress.org/support/users/babylon1999/)
 * thank you for your response!
 * File download method is “force downloads” and this is screenshot of downloads
   settings page: [https://snipboard.io/rvisdt.jpg](https://snipboard.io/rvisdt.jpg)
 * Screenshots of which other pages would help? I could also make a screencast of
   there entire steps if that would help even more.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/#post-16559605)
 * Hi again [@babylon1999](https://wordpress.org/support/users/babylon1999/)
 * unfortunately there’s still no solution – not even a known cause. But I found
   that my description above was not 100% correct. In fact after having tried to
   download with faulty path a download is already counted (step 2 above – not after
   step 4). In summary:
 * Faulty path -> Error -> Download is counted; 
   Correct path -> Download -> Download
   is NOT counted.
 * Thank you and best regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/#post-16511224)
 * Hi [@babylon1999](https://wordpress.org/support/users/babylon1999/)
 * when recognizing the database issue, I already tried those tools: update database,
   verify base database tables as well as regenerate the product attributes lookup
   table… all run through successfully but no changed behavior.
 * In the meanwhile I observed the following behavior: When changing the file URL
   of the downloadable product to a faulty path (step1), then trying to download(
   error occurs)(step2), then changing again to the correct URL (step3) and downloading
   again (step4) => it works, **one time.** Database table wc_download_log gets 
   an entry, download is counted and remaining downloads are reduced by 1.
 * As stated, it’s only working for **one time**. Trying again is failing.
 * Above mentioned phenomenon doesn’t work when changing file URL to another **existing**
   file. And it also doesn’t work when changing file URL to a faulty one and changing
   back to correct one without producing the error above mentioned as step2.
 * Does this make a clue?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/#post-16505434)
 * Hi again!
 * I found out that database table wc_download_log is not getting new entries when
   product is downloaded. The corresponding table of staging site (same database)
   is getting new entries.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/#post-16503916)
 * Hi [@babylon1999](https://wordpress.org/support/users/babylon1999/),
 * I contacted my host and the told me how to disable all server-side caching. So,
   I disabled all caching solutions as well as plugin WP-Optimze. I tried different
   bowsers and different devices… Still facing the same issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/#post-16492655)
 * Hi [@ihereira](https://wordpress.org/support/users/ihereira/),
 * > May I ask if you clear the transients under _WooCommerce > status > tools_,
   > does that make a difference?
 * Transients cleared but no difference.
 * > If that does not help, please navigate under _WooCommerce > System Status >
   > Logs _(if there are errors visible, let us know).
 * The are error logs. The most recent related to woocommerce is
   **one-stop-shop-
   woocommerce-2023-02-21-c6838842328f415372db841cfc759e62.log**:
 *     ```wp-block-code
       2023-02-21T04:44:02+00:00 INFO Starting new Beobachter 2023 @ 2023-02-21
       2023-02-21T04:45:03+00:00 INFO Completed Beobachter 2023 @ 2023-02-21. Status: completed
       2023-02-21T05:19:38+00:00 INFO Starting new Beobachter 2023 @ 2023-02-21
       2023-02-21T05:24:50+00:00 INFO Completed Beobachter 2023 @ 2023-02-21. Status: completed
       ```
   
 * …while one-stop-shop is **not** activated. There are others related to storeabill-
   sync… which I think can’t be relevant?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/#post-16484856)
 * Hi [@xue28](https://wordpress.org/support/users/xue28/)
 * Yes, that’s correct. The issue is not happening in clone site. Here’s System 
   Status Report of clone site:
 *     ```wp-block-code
       WordPress Environment
   
       WordPress address (URL): https://wertschatz-papeterie.de/wooSite address (URL): https://wertschatz-papeterie.de/wooWC Version: 7.4.0REST API Version: ✔ 7.4.0WC Blocks Version: ✔ 9.4.3Action Scheduler Version: ✔ 3.5.4Log Directory Writable: ✔WP Version: 6.1.1WP Multisite: –WP Memory Limit: 256 MBWP Debug Mode: –WP Cron: ✔Language: de_DEExternal object cache: –
   
       Server Environment
   
       Server Info: ApachePHP Version: 7.4.33PHP Post Max Size: 75 MBPHP Time Limit: 120PHP Max Input Vars: 1500cURL Version: 7.61.1OpenSSL/1.1.1k
   
       SUHOSIN Installed: –MySQL Version: 5.7.41-logMax Upload Size: 50 MBDefault Timezone is UTC: ✔fsockopen/cURL: ✔SoapClient: ✔DOMDocument: ✔GZip: ✔Multibyte String: ✔Remote Post: ✔Remote Get: ✔
   
       Database
   
       WC Database Version: 7.4.0WC Database Prefix: wpstg1_Datenbank-Gesamtgröße: 900.84MBDatenbank-Datengröße: 659.68MBDatenbank-Indexgröße: 241.16MBwpstg1_woocommerce_sessions: Daten: 1.03MB + Index: 0.02MB + Engine MyISAMwpstg1_woocommerce_api_keys: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_attribute_taxonomies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_downloadable_product_permissions: Daten: 0.21MB + Index: 0.21MB + Engine MyISAMwpstg1_woocommerce_order_items: Daten: 1.81MB + Index: 0.86MB + Engine MyISAMwpstg1_woocommerce_order_itemmeta: Daten: 19.77MB + Index: 16.35MB + Engine MyISAMwpstg1_woocommerce_tax_rates: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg1_woocommerce_tax_rate_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_shipping_zones: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_shipping_zone_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_shipping_zone_methods: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_payment_tokens: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_payment_tokenmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_log: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMflo_launch_db: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_actionscheduler_actions: Daten: 0.31MB + Index: 0.14MB + Engine MyISAMwpstg0_actionscheduler_claims: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_actionscheduler_groups: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg0_actionscheduler_logs: Daten: 0.21MB + Index: 0.15MB + Engine MyISAMwpstg0_borlabs_cookie_consent_log: Daten: 7.00MB + Index: 2.00MB + Engine MyISAMwpstg0_borlabs_cookie_content_blocker: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg0_borlabs_cookie_cookies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_borlabs_cookie_groups: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_borlabs_cookie_script_blocker: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_borlabs_cookie_statistics: Daten: 1.52MB + Index: 0.84MB + Engine InnoDBwpstg0_commentmeta: Daten: 0.32MB + Index: 0.24MB + Engine MyISAMwpstg0_comments: Daten: 5.39MB + Index: 1.88MB + Engine MyISAMwpstg0_links: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_ms_snippets: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_options: Daten: 24.13MB + Index: 0.24MB + Engine MyISAMwpstg0_postmeta: Daten: 29.38MB + Index: 15.14MB + Engine MyISAMwpstg0_posts: Daten: 6.27MB + Index: 1.00MB + Engine MyISAMwpstg0_sbi_feeds: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg0_sbi_feed_caches: Daten: 5.52MB + Index: 0.02MB + Engine InnoDBwpstg0_sbi_instagram_feeds_posts: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwpstg0_sbi_instagram_feed_locator: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_sbi_instagram_posts: Daten: 1.97MB + Index: 0.01MB + Engine MyISAMwpstg0_sbi_sources: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwpstg0_snippets: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg0_storeabill_documentmeta: Daten: 11.36MB + Index: 5.79MB + Engine MyISAMwpstg0_storeabill_documents: Daten: 1.16MB + Index: 0.50MB + Engine MyISAMwpstg0_storeabill_document_itemmeta: Daten: 31.73MB + Index: 21.48MB + Engine MyISAMwpstg0_storeabill_document_items: Daten: 3.60MB + Index: 3.27MB + Engine MyISAMwpstg0_storeabill_document_noticemeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_storeabill_document_notices: Daten: 0.73MB + Index: 0.21MB + Engine MyISAMwpstg0_storeabill_journals: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_termmeta: Daten: 0.01MB + Index: 0.02MB + Engine MyISAMwpstg0_terms: Daten: 0.03MB + Index: 0.06MB + Engine MyISAMwpstg0_term_relationships: Daten: 0.07MB + Index: 0.15MB + Engine MyISAMwpstg0_term_taxonomy: Daten: 0.03MB + Index: 0.04MB + Engine MyISAMwpstg0_tm_taskmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwpstg0_tm_tasks: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg0_usermeta: Daten: 2.25MB + Index: 1.35MB + Engine MyISAMwpstg0_users: Daten: 0.11MB + Index: 0.08MB + Engine MyISAMwpstg0_wc_admin_notes: Daten: 0.05MB + Index: 0.00MB + Engine MyISAMwpstg0_wc_admin_note_actions: Daten: 0.02MB + Index: 0.01MB + Engine MyISAMwpstg0_wc_category_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wc_customer_lookup: Daten: 0.25MB + Index: 0.19MB + Engine MyISAMwpstg0_wc_download_log: Daten: 0.12MB + Index: 0.09MB + Engine MyISAMwpstg0_wc_order_coupon_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wc_order_product_lookup: Daten: 1.84MB + Index: 1.54MB + Engine MyISAMwpstg0_wc_order_stats: Daten: 0.46MB + Index: 0.27MB + Engine MyISAMwpstg0_wc_order_tax_lookup: Daten: 0.22MB + Index: 0.24MB + Engine MyISAMwpstg0_wc_product_attributes_lookup: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg0_wc_product_download_directories: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg0_wc_product_meta_lookup: Daten: 0.03MB + Index: 0.04MB + Engine MyISAMwpstg0_wc_rate_limits: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wc_reserved_stock: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wc_tax_rate_classes: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg0_wc_webhooks: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_api_keys: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_attribute_taxonomies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_downloadable_product_permissions: Daten: 0.21MB + Index: 0.21MB + Engine MyISAMwpstg0_woocommerce_gzd_dhl_im_products: Daten: 0.04MB + Index: 0.01MB + Engine MyISAMwpstg0_woocommerce_gzd_dhl_im_product_services: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_gzd_dhl_labelmeta: Daten: 0.03MB + Index: 0.03MB + Engine MyISAMwpstg0_woocommerce_gzd_dhl_labels: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_gzd_packaging: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_gzd_packagingmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_gzd_shipmentmeta: Daten: 4.14MB + Index: 1.97MB + Engine MyISAMwpstg0_woocommerce_gzd_shipments: Daten: 0.95MB + Index: 0.29MB + Engine MyISAMwpstg0_woocommerce_gzd_shipment_itemmeta: Daten: 4.41MB + Index: 4.29MB + Engine MyISAMwpstg0_woocommerce_gzd_shipment_items: Daten: 1.30MB + Index: 1.30MB + Engine MyISAMwpstg0_woocommerce_gzd_shipment_labelmeta: Daten: 1.23MB + Index: 0.84MB + Engine MyISAMwpstg0_woocommerce_gzd_shipment_labels: Daten: 0.21MB + Index: 0.09MB + Engine MyISAMwpstg0_woocommerce_gzd_shipping_provider: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg0_woocommerce_gzd_shipping_providermeta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwpstg0_woocommerce_log: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_order_itemmeta: Daten: 19.74MB + Index: 16.33MB + Engine MyISAMwpstg0_woocommerce_order_items: Daten: 1.81MB + Index: 0.86MB + Engine MyISAMwpstg0_woocommerce_payment_tokenmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_payment_tokens: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_sessions: Daten: 14.30MB + Index: 0.29MB + Engine MyISAMwpstg0_woocommerce_shipping_zones: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_shipping_zone_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_shipping_zone_methods: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_tax_rates: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg0_woocommerce_tax_rate_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wpmailsmtp_debug_events: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg0_wpmailsmtp_tasks_meta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wpml_mails: Daten: 18.55MB + Index: 0.02MB + Engine MyISAMwpstg0_wpstg_queue: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg0_wt_iew_action_history: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg0_wt_iew_mapping_template: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg0_yoast_indexable: Daten: 1.02MB + Index: 0.27MB + Engine MyISAMwpstg0_yoast_indexable_hierarchy: Daten: 0.05MB + Index: 0.11MB + Engine MyISAMwpstg0_yoast_migrations: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg0_yoast_primary_term: Daten: 0.01MB + Index: 0.02MB + Engine MyISAMwpstg0_yoast_seo_links: Daten: 0.13MB + Index: 0.03MB + Engine MyISAMwpstg0_yoast_seo_meta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwpstg1_actionscheduler_actions: Daten: 0.34MB + Index: 0.14MB + Engine MyISAMwpstg1_actionscheduler_claims: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_actionscheduler_groups: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg1_actionscheduler_logs: Daten: 0.23MB + Index: 0.17MB + Engine MyISAMwpstg1_borlabs_cookie_consent_log: Daten: 6.91MB + Index: 1.97MB + Engine MyISAMwpstg1_borlabs_cookie_content_blocker: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg1_borlabs_cookie_cookies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_borlabs_cookie_groups: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_borlabs_cookie_script_blocker: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_borlabs_cookie_statistics: Daten: 1.52MB + Index: 0.84MB + Engine InnoDBwpstg1_commentmeta: Daten: 0.32MB + Index: 0.24MB + Engine MyISAMwpstg1_comments: Daten: 5.41MB + Index: 1.88MB + Engine MyISAMwpstg1_links: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_ms_snippets: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_options: Daten: 24.17MB + Index: 0.23MB + Engine MyISAMwpstg1_postmeta: Daten: 29.41MB + Index: 15.17MB + Engine MyISAMwpstg1_posts: Daten: 6.27MB + Index: 1.00MB + Engine MyISAMwpstg1_sbi_feeds: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg1_sbi_feed_caches: Daten: 1.52MB + Index: 0.02MB + Engine InnoDBwpstg1_sbi_instagram_feeds_posts: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwpstg1_sbi_instagram_feed_locator: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_sbi_instagram_posts: Daten: 1.97MB + Index: 0.01MB + Engine MyISAMwpstg1_sbi_sources: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwpstg1_snippets: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg1_storeabill_documentmeta: Daten: 11.42MB + Index: 5.83MB + Engine MyISAMwpstg1_storeabill_documents: Daten: 1.16MB + Index: 0.50MB + Engine MyISAMwpstg1_storeabill_document_itemmeta: Daten: 31.84MB + Index: 21.56MB + Engine MyISAMwpstg1_storeabill_document_items: Daten: 3.62MB + Index: 3.28MB + Engine MyISAMwpstg1_storeabill_document_noticemeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_storeabill_document_notices: Daten: 0.73MB + Index: 0.21MB + Engine MyISAMwpstg1_storeabill_journals: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_termmeta: Daten: 0.01MB + Index: 0.02MB + Engine MyISAMwpstg1_terms: Daten: 0.03MB + Index: 0.06MB + Engine MyISAMwpstg1_term_relationships: Daten: 0.07MB + Index: 0.15MB + Engine MyISAMwpstg1_term_taxonomy: Daten: 0.03MB + Index: 0.04MB + Engine MyISAMwpstg1_tm_taskmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwpstg1_tm_tasks: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg1_usermeta: Daten: 2.27MB + Index: 1.38MB + Engine MyISAMwpstg1_users: Daten: 0.11MB + Index: 0.09MB + Engine MyISAMwpstg1_wc_admin_notes: Daten: 0.05MB + Index: 0.00MB + Engine MyISAMwpstg1_wc_admin_note_actions: Daten: 0.02MB + Index: 0.01MB + Engine MyISAMwpstg1_wc_category_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_wc_customer_lookup: Daten: 0.26MB + Index: 0.19MB + Engine MyISAMwpstg1_wc_download_log: Daten: 0.12MB + Index: 0.09MB + Engine MyISAMwpstg1_wc_order_coupon_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_wc_order_product_lookup: Daten: 1.84MB + Index: 1.54MB + Engine MyISAMwpstg1_wc_order_stats: Daten: 0.46MB + Index: 0.27MB + Engine MyISAMwpstg1_wc_order_tax_lookup: Daten: 0.22MB + Index: 0.24MB + Engine MyISAMwpstg1_wc_product_attributes_lookup: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg1_wc_product_download_directories: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg1_wc_product_meta_lookup: Daten: 0.03MB + Index: 0.04MB + Engine MyISAMwpstg1_wc_rate_limits: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_wc_reserved_stock: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_wc_tax_rate_classes: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg1_wc_webhooks: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_gzd_dhl_im_products: Daten: 0.04MB + Index: 0.01MB + Engine MyISAMwpstg1_woocommerce_gzd_dhl_im_product_services: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_gzd_dhl_labelmeta: Daten: 0.03MB + Index: 0.03MB + Engine MyISAMwpstg1_woocommerce_gzd_dhl_labels: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_gzd_packaging: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_gzd_packagingmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_gzd_shipmentmeta: Daten: 4.16MB + Index: 1.98MB + Engine MyISAMwpstg1_woocommerce_gzd_shipments: Daten: 0.95MB + Index: 0.29MB + Engine MyISAMwpstg1_woocommerce_gzd_shipment_itemmeta: Daten: 4.42MB + Index: 4.30MB + Engine MyISAMwpstg1_woocommerce_gzd_shipment_items: Daten: 1.30MB + Index: 1.30MB + Engine MyISAMwpstg1_woocommerce_gzd_shipment_labelmeta: Daten: 1.24MB + Index: 0.85MB + Engine MyISAMwpstg1_woocommerce_gzd_shipment_labels: Daten: 0.21MB + Index: 0.09MB + Engine MyISAMwpstg1_woocommerce_gzd_shipping_provider: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg1_woocommerce_gzd_shipping_providermeta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwpstg1_wpmailsmtp_debug_events: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg1_wpmailsmtp_tasks_meta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_wpml_mails: Daten: 17.79MB + Index: 0.02MB + Engine MyISAMwpstg1_wpstg_queue: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg1_wt_iew_action_history: Daten: 0.09MB + Index: 0.00MB + Engine InnoDBwpstg1_wt_iew_mapping_template: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg1_yoast_indexable: Daten: 1.02MB + Index: 0.27MB + Engine MyISAMwpstg1_yoast_indexable_hierarchy: Daten: 0.05MB + Index: 0.11MB + Engine MyISAMwpstg1_yoast_migrations: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg1_yoast_primary_term: Daten: 0.01MB + Index: 0.02MB + Engine MyISAMwpstg1_yoast_seo_links: Daten: 0.13MB + Index: 0.03MB + Engine MyISAMwpstg1_yoast_seo_meta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwp_6_actionscheduler_actions: Daten: 0.51MB + Index: 0.22MB + Engine MyISAMwp_6_actionscheduler_claims: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_actionscheduler_groups: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwp_6_actionscheduler_logs: Daten: 0.35MB + Index: 0.24MB + Engine MyISAMwp_6_borlabs_cookie_consent_log: Daten: 8.39MB + Index: 2.00MB + Engine MyISAMwp_6_borlabs_cookie_content_blocker: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwp_6_borlabs_cookie_cookies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_borlabs_cookie_groups: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_borlabs_cookie_script_blocker: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_borlabs_cookie_statistics: Daten: 1.52MB + Index: 1.97MB + Engine InnoDBwp_6_commentmeta: Daten: 0.32MB + Index: 0.21MB + Engine MyISAMwp_6_comments: Daten: 5.41MB + Index: 1.58MB + Engine MyISAMwp_6_links: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_ms_snippets: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_options: Daten: 28.81MB + Index: 0.24MB + Engine MyISAMwp_6_postmeta: Daten: 29.79MB + Index: 12.86MB + Engine MyISAMwp_6_posts: Daten: 6.30MB + Index: 0.96MB + Engine MyISAMwp_6_sbi_feeds: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwp_6_sbi_feed_caches: Daten: 0.08MB + Index: 0.02MB + Engine InnoDBwp_6_sbi_instagram_feeds_posts: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwp_6_sbi_instagram_feed_locator: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_sbi_instagram_posts: Daten: 2.00MB + Index: 0.01MB + Engine MyISAMwp_6_sbi_sources: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwp_6_snippets: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwp_6_storeabill_documentmeta: Daten: 11.42MB + Index: 5.27MB + Engine MyISAMwp_6_storeabill_documents: Daten: 1.16MB + Index: 0.52MB + Engine MyISAMwp_6_storeabill_document_itemmeta: Daten: 31.96MB + Index: 17.49MB + Engine MyISAMwp_6_storeabill_document_items: Daten: 3.62MB + Index: 2.79MB + Engine MyISAMwp_6_storeabill_document_noticemeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_storeabill_document_notices: Daten: 0.73MB + Index: 0.21MB + Engine MyISAMwp_6_storeabill_journals: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_termmeta: Daten: 0.01MB + Index: 0.02MB + Engine MyISAMwp_6_terms: Daten: 0.03MB + Index: 0.06MB + Engine MyISAMwp_6_term_relationships: Daten: 0.07MB + Index: 0.13MB + Engine MyISAMwp_6_term_taxonomy: Daten: 0.03MB + Index: 0.03MB + Engine MyISAMwp_6_tm_taskmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwp_6_tm_tasks: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwp_6_usermeta: Daten: 2.28MB + Index: 1.18MB + Engine MyISAMwp_6_users: Daten: 0.11MB + Index: 0.12MB + Engine MyISAMwp_6_wc_admin_notes: Daten: 0.05MB + Index: 0.00MB + Engine MyISAMwp_6_wc_admin_note_actions: Daten: 0.02MB + Index: 0.01MB + Engine MyISAMwp_6_wc_category_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_wc_customer_lookup: Daten: 0.26MB + Index: 0.21MB + Engine MyISAMwp_6_wc_download_log: Daten: 0.12MB + Index: 0.09MB + Engine MyISAMwp_6_wc_order_coupon_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_wc_order_product_lookup: Daten: 1.84MB + Index: 1.45MB + Engine MyISAMwp_6_wc_order_stats: Daten: 0.46MB + Index: 0.29MB + Engine MyISAMwp_6_wc_order_tax_lookup: Daten: 0.22MB + Index: 0.23MB + Engine MyISAMwp_6_wc_product_attributes_lookup: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwp_6_wc_product_download_directories: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwp_6_wc_product_meta_lookup: Daten: 0.03MB + Index: 0.04MB + Engine MyISAMwp_6_wc_rate_limits: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_wc_reserved_stock: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_wc_tax_rate_classes: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwp_6_wc_webhooks: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_api_keys: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_attribute_taxonomies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_downloadable_product_permissions: Daten: 0.21MB + Index: 0.23MB + Engine MyISAMwp_6_woocommerce_gzd_dhl_im_products: Daten: 0.04MB + Index: 0.01MB + Engine MyISAMwp_6_woocommerce_gzd_dhl_im_product_services: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_gzd_dhl_labelmeta: Daten: 0.03MB + Index: 0.03MB + Engine MyISAMwp_6_woocommerce_gzd_dhl_labels: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_gzd_packaging: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_gzd_packagingmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_gzd_shipmentmeta: Daten: 4.16MB + Index: 1.63MB + Engine MyISAMwp_6_woocommerce_gzd_shipments: Daten: 0.96MB + Index: 0.28MB + Engine MyISAMwp_6_woocommerce_gzd_shipment_itemmeta: Daten: 4.42MB + Index: 3.51MB + Engine MyISAMwp_6_woocommerce_gzd_shipment_items: Daten: 1.31MB + Index: 1.25MB + Engine MyISAMwp_6_woocommerce_gzd_shipment_labelmeta: Daten: 1.24MB + Index: 0.78MB + Engine MyISAMwp_6_woocommerce_gzd_shipment_labels: Daten: 0.21MB + Index: 0.09MB + Engine MyISAMwp_6_woocommerce_gzd_shipping_provider: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwp_6_woocommerce_gzd_shipping_providermeta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwp_6_woocommerce_log: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_order_itemmeta: Daten: 19.77MB + Index: 12.94MB + Engine MyISAMwp_6_woocommerce_order_items: Daten: 1.81MB + Index: 0.82MB + Engine MyISAMwp_6_woocommerce_payment_tokenmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_payment_tokens: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_sessions: Daten: 0.05MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_shipping_zones: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_shipping_zone_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_shipping_zone_methods: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_tax_rates: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwp_6_woocommerce_tax_rate_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_wpmailsmtp_debug_events: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwp_6_wpmailsmtp_tasks_meta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_wpml_mails: Daten: 94.29MB + Index: 0.08MB + Engine MyISAMwp_6_wpstg_queue: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwp_6_wt_iew_action_history: Daten: 0.08MB + Index: 0.00MB + Engine InnoDBwp_6_wt_iew_mapping_template: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwp_6_yoast_indexable: Daten: 1.43MB + Index: 0.37MB + Engine MyISAMwp_6_yoast_indexable_hierarchy: Daten: 0.05MB + Index: 0.12MB + Engine MyISAMwp_6_yoast_migrations: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwp_6_yoast_primary_term: Daten: 0.02MB + Index: 0.02MB + Engine MyISAMwp_6_yoast_seo_links: Daten: 0.12MB + Index: 0.03MB + Engine MyISAMwp_6_yoast_seo_meta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAM
   
       Post Type Counts
   
       attachment: 3341custom_css: 1document_template: 5flo_form_entry: 395flo_forms: 1iksm: 1nav_menu_item: 27oembed_cache: 1page: 22post: 277product: 237product_variation: 10revision: 500shop_coupon: 46shop_order: 6365shop_order_refund: 43slideshow: 1wp_global_styles: 1
   
       Security
   
       Secure connection (HTTPS): ✔Hide errors from visitors: ✔
   
       Active Plugins (24)
   
       Antispam Bee: von pluginkollektiv – 2.11.2Borlabs Cookie - Cookie Opt-in: von Borlabs GmbH – 2.2.61Classic Editor: von WordPress-Mitwirkende – 1.6.2Code Snippets: von Code Snippets Pro – 3.2.2Flex Block: von Flothemes – 4.6.8Flo Forms: von Flothemes – 1.0.40FloSupport: von Flothemes.com – 0.5Flothemes Theme Updater: von Flosites | George M. – 2.4Iks Menu: von IksStudio – 1.9.8Smash Balloon Instagram Feed: von Smash Balloon – 6.1.1Order Export & Order Import for WooCommerce: von WebToffee – 2.3.0Weblizar Pin It Button On Image Hover And Post: von Weblizar – 3.8Product Import Export for WooCommerce: von WebToffee – 2.2.7Seitlicher WooCommerce-Warenkorb: von XootiX – 2.1UpdraftPlus – Sichern/Wiederherstellen: von UpdraftPlus.ComDavidAnderson – 1.22.24
   
       vendidero Helper: von vendidero – 2.1.6Germanized für WooCommerce Pro: von vendidero – 3.6.3Germanized für WooCommerce: von vendidero – 3.11.3WooCommerce: von Automattic – 7.4.0Yoast SEO: von Team Yoast – 20.1WP Mail Logging: von SendLayer – 1.10.5WP Mail SMTP: von WPForms – 3.7.0WP-Optimize - Clean, Compress, Cache: von David AndersonRuhani RabinTeam Updraft – 3.2.12
   
       Backup Duplicator & Migration - WP STAGING: von WP-STAGINGWPStagingBackup – 2.12.0
   
       Inactive Plugins (0)
   
       Dropin Plugins (1)
   
       advanced-cache.php: advanced-cache.php
   
       Must Use Plugins (1)
   
       WP STAGING Optimizer: von René Hermenau – 1.5.1
   
       Settings
   
       API Enabled: –Force SSL: –Currency: EUR (€)Currency Position: right_spaceThousand Separator: .Decimal Separator: ,Number of Decimals: 2Taxonomies: 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: –Enforce Approved Product Download Directories: –Order datastore: WC_Order_Data_Store_CPT
   
       WC Pages
   
       Shop-Basis: #5144 - /?page_id=5144Warenkorb: #5145 - /?page_id=5145Kasse: #5146 - /?page_id=5146Mein Konto: #5147 - /?page_id=5147Allgemeine Geschäftsbedingungen: #5172 - /?page_id=5172
   
       Theme
   
       Name: Lovely 2 ChildVersion: (Update auf Version 0 ist verfügbar)Author URL: http://flothemes.comChild Theme: ✔Parent Theme Name: Lovely 2Parent Theme Version: 1.2Parent Theme Author URL: https://flothemes.comWooCommerce Support: ✔
   
       Templates
   
       Overrides: lovely2-child/woocommerce/archive-product.phplovely2-child/woocommerce/checkout/form-checkout.phplovely2-child/woocommerce/checkout/form-pay.phplovely2-child/woocommerce/loop/loop-end.phplovely2-child/woocommerce/loop/loop-start.phplovely2-child/woocommerce/single-product/add-to-cart/external.phplovely2-child/woocommerce/single-product/add-to-cart/grouped.phplovely2-child/woocommerce/single-product/add-to-cart/simple.phplovely2-child/woocommerce/single-product/add-to-cart/variable.phplovely2-child/woocommerce/single-product/add-to-cart/variation-add-to-cart-button.phplovely2-child/woocommerce/single-product/add-to-cart/variation.php
   
       Admin
   
       Enabled Features: activity-panelsanalyticscouponscustomer-effort-score-tracksimport-products-taskexperimental-fashion-sample-productsshipping-smart-defaultsshipping-setting-tourhomescreenmarketingmultichannel-marketingmobile-app-bannernavigationnew-product-management-experienceonboardingonboarding-tasksremote-inbox-notificationsremote-free-extensionspayment-gateway-suggestionsshipping-label-bannersubscriptionsstore-alertstransient-noticeswoo-mobile-welcomewc-pay-promotionwc-pay-welcome-page
   
       Disabled Features: minified-jsproduct-variation-managementsettings
   
       Daily Cron: ✔ Next scheduled: 2023-02-15 19:50:15 +01:00Options: ✔Notes: 115Onboarding: completed
   
       Action Scheduler
   
       Abgeschlossen: 1.100Oldest: 2023-01-19 09:51:28 +0100Newest: 2023-02-19 13:11:01 +0100
   
       Fehlgeschlagen: 42Oldest: 2022-01-26 13:59:57 +0100Newest: 2023-02-15 20:25:13 +0100
   
       Ausstehend: 7Oldest: 2023-02-20 13:08:52 +0100Newest: 2023-02-20 13:08:52 +0100
   
       Status report information
   
       Generated at: 2023-02-19 13:11:10 +01:00`
       ```
   
 * In addition, I also tried with theme “Storefront” installed and all PlugIns (
   except WooCommerce) deactivated in production site. Same behavior: Downloads 
   not counted and therefore not limited.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Number of product downloads not counted](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/)
 *  Thread Starter [raphael24](https://wordpress.org/support/users/raphael24/)
 * (@raphael24)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/number-of-product-downloads-not-counted/#post-16475015)
 * Dear [@xue28](https://wordpress.org/support/users/xue28/),
 * Thank you for your response.
 * We already have a clone of our site and the theme and plugins installed are the
   same. On this clone it works fine with downloads: they are counted and not possible
   if limit is reached. That’s why I think there isn’t a conflict with any other
   plugin causing this problem. In addition we now have made an additional new clone
   and the same here: everything ok.
 * So here is system status report of our production site:
 *     ```wp-block-code
       WordPress Environment
   
       WordPress address (URL): https://wertschatz-papeterie.deSite address (URL): https://wertschatz-papeterie.deWC Version: 7.4.0REST API Version: ✔ 7.4.0WC Blocks Version: ✔ 9.4.3Action Scheduler Version: ✔ 3.5.4Log Directory Writable: ✔WP Version: 6.1.1WP Multisite: –WP Memory Limit: 256 MBWP Debug Mode: –WP Cron: ✔Language: de_DEExternal object cache: –
   
       Server Environment
   
       Server Info: ApachePHP Version: 7.4.33PHP Post Max Size: 75 MBPHP Time Limit: 120PHP Max Input Vars: 1500cURL Version: 7.61.1OpenSSL/1.1.1k
   
       SUHOSIN Installed: –MySQL Version: 5.7.41-logMax Upload Size: 50 MBDefault Timezone is UTC: ✔fsockopen/cURL: ✔SoapClient: ✔DOMDocument: ✔GZip: ✔Multibyte String: ✔Remote Post: ✔Remote Get: ✔
   
       Database
   
       WC Database Version: 7.4.0WC Database Prefix: wp_6_Datenbank-Gesamtgröße: 916.01MBDatenbank-Datengröße: 674.55MBDatenbank-Indexgröße: 241.46MBwp_6_woocommerce_sessions: Daten: 15.46MB + Index: 0.31MB + Engine MyISAMwp_6_woocommerce_api_keys: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_attribute_taxonomies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_downloadable_product_permissions: Daten: 0.21MB + Index: 0.23MB + Engine MyISAMwp_6_woocommerce_order_items: Daten: 1.81MB + Index: 0.82MB + Engine MyISAMwp_6_woocommerce_order_itemmeta: Daten: 19.77MB + Index: 12.94MB + Engine MyISAMwp_6_woocommerce_tax_rates: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwp_6_woocommerce_tax_rate_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_shipping_zones: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_shipping_zone_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_shipping_zone_methods: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_payment_tokens: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_payment_tokenmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_log: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMflo_launch_db: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_actionscheduler_actions: Daten: 0.31MB + Index: 0.13MB + Engine MyISAMwpstg0_actionscheduler_claims: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_actionscheduler_groups: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg0_actionscheduler_logs: Daten: 0.21MB + Index: 0.15MB + Engine MyISAMwpstg0_borlabs_cookie_consent_log: Daten: 7.00MB + Index: 2.00MB + Engine MyISAMwpstg0_borlabs_cookie_content_blocker: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg0_borlabs_cookie_cookies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_borlabs_cookie_groups: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_borlabs_cookie_script_blocker: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_borlabs_cookie_statistics: Daten: 1.52MB + Index: 0.84MB + Engine InnoDBwpstg0_commentmeta: Daten: 0.32MB + Index: 0.24MB + Engine MyISAMwpstg0_comments: Daten: 5.39MB + Index: 1.88MB + Engine MyISAMwpstg0_links: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_ms_snippets: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_options: Daten: 24.13MB + Index: 0.24MB + Engine MyISAMwpstg0_postmeta: Daten: 29.38MB + Index: 15.14MB + Engine MyISAMwpstg0_posts: Daten: 6.27MB + Index: 1.00MB + Engine MyISAMwpstg0_sbi_feeds: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg0_sbi_feed_caches: Daten: 5.52MB + Index: 0.02MB + Engine InnoDBwpstg0_sbi_instagram_feeds_posts: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwpstg0_sbi_instagram_feed_locator: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_sbi_instagram_posts: Daten: 1.97MB + Index: 0.01MB + Engine MyISAMwpstg0_sbi_sources: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwpstg0_snippets: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg0_storeabill_documentmeta: Daten: 11.36MB + Index: 5.79MB + Engine MyISAMwpstg0_storeabill_documents: Daten: 1.16MB + Index: 0.50MB + Engine MyISAMwpstg0_storeabill_document_itemmeta: Daten: 31.73MB + Index: 21.48MB + Engine MyISAMwpstg0_storeabill_document_items: Daten: 3.60MB + Index: 3.27MB + Engine MyISAMwpstg0_storeabill_document_noticemeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_storeabill_document_notices: Daten: 0.73MB + Index: 0.21MB + Engine MyISAMwpstg0_storeabill_journals: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_termmeta: Daten: 0.01MB + Index: 0.02MB + Engine MyISAMwpstg0_terms: Daten: 0.03MB + Index: 0.06MB + Engine MyISAMwpstg0_term_relationships: Daten: 0.07MB + Index: 0.15MB + Engine MyISAMwpstg0_term_taxonomy: Daten: 0.03MB + Index: 0.04MB + Engine MyISAMwpstg0_tm_taskmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwpstg0_tm_tasks: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg0_usermeta: Daten: 2.24MB + Index: 1.35MB + Engine MyISAMwpstg0_users: Daten: 0.11MB + Index: 0.08MB + Engine MyISAMwpstg0_wc_admin_notes: Daten: 0.05MB + Index: 0.00MB + Engine MyISAMwpstg0_wc_admin_note_actions: Daten: 0.02MB + Index: 0.01MB + Engine MyISAMwpstg0_wc_category_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wc_customer_lookup: Daten: 0.25MB + Index: 0.19MB + Engine MyISAMwpstg0_wc_download_log: Daten: 0.12MB + Index: 0.09MB + Engine MyISAMwpstg0_wc_order_coupon_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wc_order_product_lookup: Daten: 1.84MB + Index: 1.54MB + Engine MyISAMwpstg0_wc_order_stats: Daten: 0.46MB + Index: 0.27MB + Engine MyISAMwpstg0_wc_order_tax_lookup: Daten: 0.22MB + Index: 0.24MB + Engine MyISAMwpstg0_wc_product_attributes_lookup: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg0_wc_product_download_directories: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg0_wc_product_meta_lookup: Daten: 0.03MB + Index: 0.04MB + Engine MyISAMwpstg0_wc_rate_limits: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wc_reserved_stock: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wc_tax_rate_classes: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg0_wc_webhooks: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_api_keys: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_attribute_taxonomies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_downloadable_product_permissions: Daten: 0.21MB + Index: 0.21MB + Engine MyISAMwpstg0_woocommerce_gzd_dhl_im_products: Daten: 0.04MB + Index: 0.01MB + Engine MyISAMwpstg0_woocommerce_gzd_dhl_im_product_services: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_gzd_dhl_labelmeta: Daten: 0.03MB + Index: 0.03MB + Engine MyISAMwpstg0_woocommerce_gzd_dhl_labels: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_gzd_packaging: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_gzd_packagingmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_gzd_shipmentmeta: Daten: 4.14MB + Index: 1.97MB + Engine MyISAMwpstg0_woocommerce_gzd_shipments: Daten: 0.95MB + Index: 0.29MB + Engine MyISAMwpstg0_woocommerce_gzd_shipment_itemmeta: Daten: 4.41MB + Index: 4.29MB + Engine MyISAMwpstg0_woocommerce_gzd_shipment_items: Daten: 1.30MB + Index: 1.30MB + Engine MyISAMwpstg0_woocommerce_gzd_shipment_labelmeta: Daten: 1.23MB + Index: 0.84MB + Engine MyISAMwpstg0_woocommerce_gzd_shipment_labels: Daten: 0.21MB + Index: 0.09MB + Engine MyISAMwpstg0_woocommerce_gzd_shipping_provider: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg0_woocommerce_gzd_shipping_providermeta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwpstg0_woocommerce_log: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_order_itemmeta: Daten: 19.74MB + Index: 16.33MB + Engine MyISAMwpstg0_woocommerce_order_items: Daten: 1.81MB + Index: 0.86MB + Engine MyISAMwpstg0_woocommerce_payment_tokenmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_payment_tokens: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_sessions: Daten: 14.29MB + Index: 0.29MB + Engine MyISAMwpstg0_woocommerce_shipping_zones: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_shipping_zone_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_shipping_zone_methods: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_woocommerce_tax_rates: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg0_woocommerce_tax_rate_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wpmailsmtp_debug_events: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg0_wpmailsmtp_tasks_meta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg0_wpml_mails: Daten: 18.55MB + Index: 0.02MB + Engine MyISAMwpstg0_wpstg_queue: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg0_wt_iew_action_history: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg0_wt_iew_mapping_template: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg0_yoast_indexable: Daten: 1.02MB + Index: 0.27MB + Engine MyISAMwpstg0_yoast_indexable_hierarchy: Daten: 0.05MB + Index: 0.11MB + Engine MyISAMwpstg0_yoast_migrations: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg0_yoast_primary_term: Daten: 0.01MB + Index: 0.02MB + Engine MyISAMwpstg0_yoast_seo_links: Daten: 0.13MB + Index: 0.03MB + Engine MyISAMwpstg0_yoast_seo_meta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwpstg1_actionscheduler_actions: Daten: 0.34MB + Index: 0.14MB + Engine MyISAMwpstg1_actionscheduler_claims: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_actionscheduler_groups: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg1_actionscheduler_logs: Daten: 0.23MB + Index: 0.17MB + Engine MyISAMwpstg1_borlabs_cookie_consent_log: Daten: 6.91MB + Index: 1.97MB + Engine MyISAMwpstg1_borlabs_cookie_content_blocker: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg1_borlabs_cookie_cookies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_borlabs_cookie_groups: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_borlabs_cookie_script_blocker: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_borlabs_cookie_statistics: Daten: 1.52MB + Index: 0.84MB + Engine InnoDBwpstg1_commentmeta: Daten: 0.32MB + Index: 0.24MB + Engine MyISAMwpstg1_comments: Daten: 5.41MB + Index: 1.88MB + Engine MyISAMwpstg1_links: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_ms_snippets: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_options: Daten: 24.07MB + Index: 0.23MB + Engine MyISAMwpstg1_postmeta: Daten: 29.41MB + Index: 15.17MB + Engine MyISAMwpstg1_posts: Daten: 6.27MB + Index: 1.00MB + Engine MyISAMwpstg1_sbi_feeds: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg1_sbi_feed_caches: Daten: 1.52MB + Index: 0.02MB + Engine InnoDBwpstg1_sbi_instagram_feeds_posts: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwpstg1_sbi_instagram_feed_locator: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_sbi_instagram_posts: Daten: 1.97MB + Index: 0.01MB + Engine MyISAMwpstg1_sbi_sources: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwpstg1_snippets: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg1_storeabill_documentmeta: Daten: 11.42MB + Index: 5.83MB + Engine MyISAMwpstg1_storeabill_documents: Daten: 1.16MB + Index: 0.50MB + Engine MyISAMwpstg1_storeabill_document_itemmeta: Daten: 31.84MB + Index: 21.56MB + Engine MyISAMwpstg1_storeabill_document_items: Daten: 3.62MB + Index: 3.28MB + Engine MyISAMwpstg1_storeabill_document_noticemeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_storeabill_document_notices: Daten: 0.73MB + Index: 0.21MB + Engine MyISAMwpstg1_storeabill_journals: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_termmeta: Daten: 0.01MB + Index: 0.02MB + Engine MyISAMwpstg1_terms: Daten: 0.03MB + Index: 0.06MB + Engine MyISAMwpstg1_term_relationships: Daten: 0.07MB + Index: 0.15MB + Engine MyISAMwpstg1_term_taxonomy: Daten: 0.03MB + Index: 0.04MB + Engine MyISAMwpstg1_tm_taskmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwpstg1_tm_tasks: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg1_usermeta: Daten: 2.27MB + Index: 1.38MB + Engine MyISAMwpstg1_users: Daten: 0.11MB + Index: 0.09MB + Engine MyISAMwpstg1_wc_admin_notes: Daten: 0.05MB + Index: 0.00MB + Engine MyISAMwpstg1_wc_admin_note_actions: Daten: 0.02MB + Index: 0.01MB + Engine MyISAMwpstg1_wc_category_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_wc_customer_lookup: Daten: 0.26MB + Index: 0.19MB + Engine MyISAMwpstg1_wc_download_log: Daten: 0.12MB + Index: 0.09MB + Engine MyISAMwpstg1_wc_order_coupon_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_wc_order_product_lookup: Daten: 1.84MB + Index: 1.54MB + Engine MyISAMwpstg1_wc_order_stats: Daten: 0.46MB + Index: 0.27MB + Engine MyISAMwpstg1_wc_order_tax_lookup: Daten: 0.22MB + Index: 0.24MB + Engine MyISAMwpstg1_wc_product_attributes_lookup: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg1_wc_product_download_directories: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwpstg1_wc_product_meta_lookup: Daten: 0.03MB + Index: 0.04MB + Engine MyISAMwpstg1_wc_rate_limits: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_wc_reserved_stock: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_wc_tax_rate_classes: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg1_wc_webhooks: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_api_keys: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_attribute_taxonomies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_downloadable_product_permissions: Daten: 0.21MB + Index: 0.21MB + Engine MyISAMwpstg1_woocommerce_gzd_dhl_im_products: Daten: 0.04MB + Index: 0.01MB + Engine MyISAMwpstg1_woocommerce_gzd_dhl_im_product_services: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_gzd_dhl_labelmeta: Daten: 0.03MB + Index: 0.03MB + Engine MyISAMwpstg1_woocommerce_gzd_dhl_labels: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_gzd_packaging: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_gzd_packagingmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_gzd_shipmentmeta: Daten: 4.16MB + Index: 1.98MB + Engine MyISAMwpstg1_woocommerce_gzd_shipments: Daten: 0.95MB + Index: 0.29MB + Engine MyISAMwpstg1_woocommerce_gzd_shipment_itemmeta: Daten: 4.42MB + Index: 4.30MB + Engine MyISAMwpstg1_woocommerce_gzd_shipment_items: Daten: 1.30MB + Index: 1.30MB + Engine MyISAMwpstg1_woocommerce_gzd_shipment_labelmeta: Daten: 1.24MB + Index: 0.85MB + Engine MyISAMwpstg1_woocommerce_gzd_shipment_labels: Daten: 0.21MB + Index: 0.09MB + Engine MyISAMwpstg1_woocommerce_gzd_shipping_provider: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg1_woocommerce_gzd_shipping_providermeta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwpstg1_woocommerce_log: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_order_itemmeta: Daten: 19.77MB + Index: 16.35MB + Engine MyISAMwpstg1_woocommerce_order_items: Daten: 1.81MB + Index: 0.86MB + Engine MyISAMwpstg1_woocommerce_payment_tokenmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_payment_tokens: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_sessions: Daten: 1.03MB + Index: 0.02MB + Engine MyISAMwpstg1_woocommerce_shipping_zones: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_shipping_zone_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_shipping_zone_methods: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_woocommerce_tax_rates: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg1_woocommerce_tax_rate_locations: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_wpmailsmtp_debug_events: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg1_wpmailsmtp_tasks_meta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwpstg1_wpml_mails: Daten: 17.79MB + Index: 0.02MB + Engine MyISAMwpstg1_wpstg_queue: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg1_wt_iew_action_history: Daten: 0.09MB + Index: 0.00MB + Engine InnoDBwpstg1_wt_iew_mapping_template: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwpstg1_yoast_indexable: Daten: 1.02MB + Index: 0.27MB + Engine MyISAMwpstg1_yoast_indexable_hierarchy: Daten: 0.05MB + Index: 0.11MB + Engine MyISAMwpstg1_yoast_migrations: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwpstg1_yoast_primary_term: Daten: 0.01MB + Index: 0.02MB + Engine MyISAMwpstg1_yoast_seo_links: Daten: 0.13MB + Index: 0.03MB + Engine MyISAMwpstg1_yoast_seo_meta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwp_6_actionscheduler_actions: Daten: 0.51MB + Index: 0.22MB + Engine MyISAMwp_6_actionscheduler_claims: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_actionscheduler_groups: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwp_6_actionscheduler_logs: Daten: 0.35MB + Index: 0.24MB + Engine MyISAMwp_6_borlabs_cookie_consent_log: Daten: 8.39MB + Index: 2.00MB + Engine MyISAMwp_6_borlabs_cookie_content_blocker: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwp_6_borlabs_cookie_cookies: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_borlabs_cookie_groups: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_borlabs_cookie_script_blocker: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_borlabs_cookie_statistics: Daten: 1.52MB + Index: 1.97MB + Engine InnoDBwp_6_commentmeta: Daten: 0.32MB + Index: 0.21MB + Engine MyISAMwp_6_comments: Daten: 5.41MB + Index: 1.58MB + Engine MyISAMwp_6_links: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_ms_snippets: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_options: Daten: 28.81MB + Index: 0.24MB + Engine MyISAMwp_6_postmeta: Daten: 29.42MB + Index: 12.86MB + Engine MyISAMwp_6_posts: Daten: 6.26MB + Index: 0.96MB + Engine MyISAMwp_6_sbi_feeds: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwp_6_sbi_feed_caches: Daten: 0.08MB + Index: 0.02MB + Engine InnoDBwp_6_sbi_instagram_feeds_posts: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwp_6_sbi_instagram_feed_locator: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_sbi_instagram_posts: Daten: 2.00MB + Index: 0.01MB + Engine MyISAMwp_6_sbi_sources: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwp_6_snippets: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwp_6_storeabill_documentmeta: Daten: 11.42MB + Index: 5.27MB + Engine MyISAMwp_6_storeabill_documents: Daten: 1.16MB + Index: 0.52MB + Engine MyISAMwp_6_storeabill_document_itemmeta: Daten: 31.96MB + Index: 17.49MB + Engine MyISAMwp_6_storeabill_document_items: Daten: 3.62MB + Index: 2.79MB + Engine MyISAMwp_6_storeabill_document_noticemeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_storeabill_document_notices: Daten: 0.73MB + Index: 0.21MB + Engine MyISAMwp_6_storeabill_journals: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_termmeta: Daten: 0.01MB + Index: 0.02MB + Engine MyISAMwp_6_terms: Daten: 0.03MB + Index: 0.06MB + Engine MyISAMwp_6_term_relationships: Daten: 0.07MB + Index: 0.13MB + Engine MyISAMwp_6_term_taxonomy: Daten: 0.03MB + Index: 0.03MB + Engine MyISAMwp_6_tm_taskmeta: Daten: 0.02MB + Index: 0.03MB + Engine InnoDBwp_6_tm_tasks: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwp_6_usermeta: Daten: 2.27MB + Index: 1.18MB + Engine MyISAMwp_6_users: Daten: 0.11MB + Index: 0.12MB + Engine MyISAMwp_6_wc_admin_notes: Daten: 0.05MB + Index: 0.00MB + Engine MyISAMwp_6_wc_admin_note_actions: Daten: 0.02MB + Index: 0.01MB + Engine MyISAMwp_6_wc_category_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_wc_customer_lookup: Daten: 0.26MB + Index: 0.21MB + Engine MyISAMwp_6_wc_download_log: Daten: 0.12MB + Index: 0.09MB + Engine MyISAMwp_6_wc_order_coupon_lookup: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_wc_order_product_lookup: Daten: 1.84MB + Index: 1.45MB + Engine MyISAMwp_6_wc_order_stats: Daten: 0.46MB + Index: 0.29MB + Engine MyISAMwp_6_wc_order_tax_lookup: Daten: 0.22MB + Index: 0.23MB + Engine MyISAMwp_6_wc_product_attributes_lookup: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwp_6_wc_product_download_directories: Daten: 0.02MB + Index: 0.02MB + Engine InnoDBwp_6_wc_product_meta_lookup: Daten: 0.03MB + Index: 0.04MB + Engine MyISAMwp_6_wc_rate_limits: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_wc_reserved_stock: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_wc_tax_rate_classes: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwp_6_wc_webhooks: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_gzd_dhl_im_products: Daten: 0.04MB + Index: 0.01MB + Engine MyISAMwp_6_woocommerce_gzd_dhl_im_product_services: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_gzd_dhl_labelmeta: Daten: 0.03MB + Index: 0.03MB + Engine MyISAMwp_6_woocommerce_gzd_dhl_labels: Daten: 0.01MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_gzd_packaging: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_gzd_packagingmeta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_woocommerce_gzd_shipmentmeta: Daten: 4.16MB + Index: 1.63MB + Engine MyISAMwp_6_woocommerce_gzd_shipments: Daten: 0.96MB + Index: 0.28MB + Engine MyISAMwp_6_woocommerce_gzd_shipment_itemmeta: Daten: 4.42MB + Index: 3.51MB + Engine MyISAMwp_6_woocommerce_gzd_shipment_items: Daten: 1.31MB + Index: 1.25MB + Engine MyISAMwp_6_woocommerce_gzd_shipment_labelmeta: Daten: 1.24MB + Index: 0.78MB + Engine MyISAMwp_6_woocommerce_gzd_shipment_labels: Daten: 0.21MB + Index: 0.09MB + Engine MyISAMwp_6_woocommerce_gzd_shipping_provider: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwp_6_woocommerce_gzd_shipping_providermeta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAMwp_6_wpmailsmtp_debug_events: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwp_6_wpmailsmtp_tasks_meta: Daten: 0.00MB + Index: 0.00MB + Engine MyISAMwp_6_wpml_mails: Daten: 94.29MB + Index: 0.08MB + Engine MyISAMwp_6_wpstg_queue: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwp_6_wt_iew_action_history: Daten: 0.08MB + Index: 0.00MB + Engine InnoDBwp_6_wt_iew_mapping_template: Daten: 0.02MB + Index: 0.00MB + Engine InnoDBwp_6_yoast_indexable: Daten: 1.43MB + Index: 0.37MB + Engine MyISAMwp_6_yoast_indexable_hierarchy: Daten: 0.05MB + Index: 0.12MB + Engine MyISAMwp_6_yoast_migrations: Daten: 0.00MB + Index: 0.01MB + Engine MyISAMwp_6_yoast_primary_term: Daten: 0.02MB + Index: 0.02MB + Engine MyISAMwp_6_yoast_seo_links: Daten: 0.12MB + Index: 0.03MB + Engine MyISAMwp_6_yoast_seo_meta: Daten: 0.01MB + Index: 0.01MB + Engine MyISAM
   
       Post Type Counts
   
       attachment: 3341custom_css: 1document_template: 5flo_form_entry: 395flo_forms: 1iksm: 1nav_menu_item: 27oembed_cache: 1page: 22post: 277product: 237product_variation: 10revision: 500shop_coupon: 46shop_order: 6365shop_order_refund: 43slideshow: 1wp_global_styles: 1
   
       Security
   
       Secure connection (HTTPS): ✔Hide errors from visitors: ✔
   
       Active Plugins (24)
   
       Antispam Bee: von pluginkollektiv – 2.11.2Borlabs Cookie - Cookie Opt-in: von Borlabs GmbH – 2.2.61Classic Editor: von WordPress-Mitwirkende – 1.6.2Code Snippets: von Code Snippets Pro – 3.2.2Flex Block: von Flothemes – 4.6.8Flo Forms: von Flothemes – 1.0.40FloSupport: von Flothemes.com – 0.5Flothemes Theme Updater: von Flosites | George M. – 2.4Iks Menu: von IksStudio – 1.9.8Smash Balloon Instagram Feed: von Smash Balloon – 6.1.1Order Export & Order Import for WooCommerce: von WebToffee – 2.3.0Weblizar Pin It Button On Image Hover And Post: von Weblizar – 3.8Product Import Export for WooCommerce: von WebToffee – 2.2.7Seitlicher WooCommerce-Warenkorb: von XootiX – 2.1UpdraftPlus – Sichern/Wiederherstellen: von UpdraftPlus.ComDavidAnderson – 1.22.24
   
       vendidero Helper: von vendidero – 2.1.6Germanized für WooCommerce Pro: von vendidero – 3.6.3Germanized für WooCommerce: von vendidero – 3.11.3WooCommerce: von Automattic – 7.4.0Yoast SEO: von Team Yoast – 20.1WP Mail Logging: von SendLayer – 1.10.5WP Mail SMTP: von WPForms – 3.7.0WP-Optimize - Clean, Compress, Cache: von David AndersonRuhani RabinTeam Updraft – 3.2.12
   
       Backup Duplicator & Migration - WP STAGING: von WP-STAGINGWPStagingBackup – 2.12.0
   
       Inactive Plugins (0)
   
       Dropin Plugins (1)
   
       advanced-cache.php: advanced-cache.php
   
       Must Use Plugins (1)
   
       WP STAGING Optimizer: von René Hermenau – 1.5.1
   
       Settings
   
       API Enabled: –Force SSL: –Currency: EUR (€)Currency Position: right_spaceThousand Separator: .Decimal Separator: ,Number of Decimals: 2Taxonomies: 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: –Enforce Approved Product Download Directories: –Order datastore: WC_Order_Data_Store_CPT
   
       WC Pages
   
       Shop-Basis: #5144 - /shop/Warenkorb: #5145 - /shop/warenkorb/Kasse: #5146 - /shop/kasse/Mein Konto: #5147 - /shop/mein-konto/Allgemeine Geschäftsbedingungen: #5172 - /agbs/
   
       Theme
   
       Name: Lovely 2 ChildVersion: (Update auf Version 0 ist verfügbar)Author URL: http://flothemes.comChild Theme: ✔Parent Theme Name: Lovely 2Parent Theme Version: 1.2Parent Theme Author URL: https://flothemes.comWooCommerce Support: ✔
   
       Templates
   
       Overrides: lovely2-child/woocommerce/archive-product.phplovely2-child/woocommerce/checkout/form-checkout.phplovely2-child/woocommerce/checkout/form-pay.phplovely2-child/woocommerce/loop/loop-end.phplovely2-child/woocommerce/loop/loop-start.phplovely2-child/woocommerce/single-product/add-to-cart/external.phplovely2-child/woocommerce/single-product/add-to-cart/grouped.phplovely2-child/woocommerce/single-product/add-to-cart/simple.phplovely2-child/woocommerce/single-product/add-to-cart/variable.phplovely2-child/woocommerce/single-product/add-to-cart/variation-add-to-cart-button.phplovely2-child/woocommerce/single-product/add-to-cart/variation.php
   
       Admin
   
       Enabled Features: activity-panelsanalyticscouponscustomer-effort-score-tracksimport-products-taskexperimental-fashion-sample-productsshipping-smart-defaultsshipping-setting-tourhomescreenmarketingmultichannel-marketingmobile-app-bannernavigationnew-product-management-experienceonboardingonboarding-tasksremote-inbox-notificationsremote-free-extensionspayment-gateway-suggestionsshipping-label-bannersubscriptionsstore-alertstransient-noticeswoo-mobile-welcomewc-pay-promotionwc-pay-welcome-page
   
       Disabled Features: minified-jsproduct-variation-managementsettings
   
       Daily Cron: ✔ Next scheduled: 2023-02-16 19:50:15 +01:00Options: ✔Notes: 115Onboarding: completed
   
       Action Scheduler
   
       Abgeschlossen: 1.147Oldest: 2023-01-19 09:51:28 +0100Newest: 2023-02-15 20:37:01 +0100
   
       Fehlgeschlagen: 42Oldest: 2022-01-26 13:59:57 +0100Newest: 2023-02-15 20:25:13 +0100
   
       Ausstehend: 7Oldest: 2023-02-16 00:30:17 +0100Newest: 2023-02-16 19:01:54 +0100
   
       Status report information
   
       Generated at: 2023-02-15 21:13:22 +01:00`
       ```
   
 * There are also some error logs, which are related to one-stop-shop, which is **
   not activated**. I.e.:
 * 2023-01-17T03:46:06+00:00 INFO Starting new Beobachter 2023 @ 2023-01-17
 * 2023-01-17T03:46:20+00:00 INFO Completed Beobachter 2023 @ 2023-01-17. Status:
   completed
 * 2023-01-17T04:26:03+00:00 INFO Starting new Beobachter 2023 @ 2023-01-17
 * 2023-01-17T04:27:31+00:00 INFO Completed Beobachter 2023 @ 2023-01-17. Status:
   completed
 * Thank you very much for your support!

Viewing 13 replies - 1 through 13 (of 13 total)