Risultati della ricerca per 'Use database in wordpress'

Stai vedendo 15 risultati - da 16 a 30 (di 100 totali)
    • francescopanco

      (@francescopanco)


      Hi All,

      it’s so strange I am getting this error from WordPress Core.

      [11-Jan-2023 10:44:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function error_log() in […]/wp-includes/class-wpdb.php:1602

      The database class wpdb gives an error but I can’t see what it is because there is another error that says that error_log() is undefined…

      how is that even possible? Any idea? Thanks

      wordpress 6.1.1
      php 8

      • Questo topic è stato modificato 3 anni, 2 mesi fa da francescopanco.
      • Questo topic è stato modificato 3 anni, 2 mesi fa da francescopanco.

    Ciao Mattia,
    dall’errore mi sembra di capire che il servizio hosting che hai scelto con il piano free impone un limite orario di chiamate al database:

    WordPress database error: [User ‘id19965956_wp_fb1f60cfbc425d6a05d40ccebb12505f’ has exceeded the ‘max_queries_per_hour’ resource (current value: 15000)]

    Questo significa che se superi le 15000 chiamate al database in un’ora il sito smetterà di funzionare.
    Non c’è una soluzione efficace: puoi provare a far passare un’ora e tentare nuovamente di installare WordPress oppure contattare il servizio hosting che hai scelto e chiedere se hanno qualche consiglio per risolvere il problema.

    Innanzitutto un sito in locale non può ne inviare o ricevere email. Da ciò che capisco tu vuoi usare per il tuo sito username e pwd WordPress.org, non funziona, sono 2 cose diverse.
    Prova ad entrare nel database del sito wp_users e vedi i dati che risultano.

    • Heyo, okay so, I made this website with 000webhosting and WordPress, it worked fine until now, whenever I log onto the control panel, this shows up:

      Welcome
      Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.

      Now it asks me to fill up information, when I do this shows up.

      WordPress database error: [User 'id19965956_wp_fb1f60cfbc425d6a05d40ccebb12505f' has exceeded the 'max_queries_per_hour' resource (current value: 15000)]
      CREATE TABLE wp_users ( ID bigint(20) unsigned NOT NULL auto_increment, user_login varchar(60) NOT NULL default '', user_pass varchar(255) NOT NULL default '', user_nicename varchar(50) NOT NULL default '', user_email varchar(100) NOT NULL default '', user_url varchar(100) NOT NULL default '', user_registered datetime NOT NULL default '0000-00-00 00:00:00', user_activation_key varchar(255) NOT NULL default '', user_status int(11) NOT NULL default '0', display_name varchar(250) NOT NULL default '', PRIMARY KEY (ID), KEY user_login_key (user_login), KEY user_nicename (user_nicename), KEY user_email (user_email) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci

      La pagina su cui ho bisogno di aiuto: [devi essere connesso per vedere il link]

    Chi ha creato la discussione padovano2022

    (@padovano2022)

    Ho letto la guida che mi hai mostrato ma non risolve il problema. Se leggi con più attenzione trovi scritto questo:

    volumes:
      certbot-etc:
      wordpress:
      dbdata:

    Il codice crea dei volumi non accessibili all’host mentre io desidero poter accedere ai file di wordpress.

    In merito al discorso “bella sudata” ti sbagli perché tutto il resto di codice che vedi nella pagina che posti serve solo per https, proxy, web server, ecc… ma quello è un discorso che non centra nulla con WordPress. Il codice che vedi è tutto quello che devi scrivere per configurare la macchina ma io non ho bisogno di tutto quello. Io ho già configurato la macchina e ho già tutti i servizi attivi, db compreso. Il mio problema è solo WordPress!

    Detto in maniera diversa, il mio quesito è più semplice di quello che pensi.
    Come puoi vedere nella mia configurazione attuale non si parla di Linux, di https, di redirect, di proxy, ecc…:

    version: '3.8'
    services:
      mysql:
        build: ./mysql
        image: mysql-eb:v.1.0
        restart: always
        environment:
          MYSQL_ROOT_PASSWORD: 
          MYSQL_DATABASE: 
          MYSQL_USER: 
          MYSQL_PASSWORD: 
        ports:
          - "3306:3306"
      wordpress:
        image: wordpress:6.0.2
        restart: always
        ports:
          - 8001:80
        environment:
          WORDPRESS_DB_HOST: 
          WORDPRESS_DB_USER: 
          WORDPRESS_DB_PASSWORD: 
          WORDPRESS_DB_NAME: 
        volumes:
          - ./volumes/data-wordpress:/var/www/html
      phpmyadmin:
        image: phpmyadmin:5.2.0
        ports:
          - '9000:80'
        restart: always
        environment:
          PMA_HOST: mysql
        depends_on:
          - mysql

    Io ho bisogno di installare WordPress localmente su Docker e di poter accedere ai file per eseguire un backup delle foto oppure per caricare una configurazione di WordPress presa altrove, ecc….

    In pratica il punto su cui vorrei che ti soffermassi è questo:

        volumes:
          - ./volumes/data-wordpress:/var/www/html

    La cartella “./volumes/data-wordpress” è quella che contiene tutti i file di WordPress. E’ un grosso peccato che gli sviluppatori che fanno parte del team di WordPress non abbiano pensato a Docker.

    Ti faccio un altro esempio. Se vai qui:
    https://hub.docker.com/_/wordpress
    trovi scritto:

    volumes:
      wordpress:
      db:

    In pratica ti viene spiegato come creare il volume per WordPress ma lo fa allo stesso modo del db. Questo non ha senso! E’ come creare un’auto con le ruote e le porte ma poi non metterci il motore. In buona sostanza un lavoro inconcluso! Per quanto riguarda il db non è un problema perché per salvare le tabelle di un sito uso phpmyadmin ma per WordPress il problema c’è. Scrivendo il codice sopra non posso salvare una foto caricata, non posso trasferire un sito su un altro hosting, non posso cambiare un file css di un tema, praticamente non posso fare nulla.

    L’unica soluzione che ho trovato è quella che ho scritto nei post precedenti ma non è un metodo corretto e professionale, neppure comodo.

    Sul fatto che non interessi a nessuno accedere ai file di WordPress dubito fortemente. Se è come dici tu mi devi spiegare come fanno gli altri utenti a superare i limiti che ho descritto sopra.

    • Questa risposta è stata modificata 3 anni, 6 mesi fa da padovano2022.

    Ok ecco il riscontro.

    Se hai un backup ripristina e hai risolto.

    Probabilmente non ce l’hai altrimenti non avresti scritto il post.
    In questo caso si può provare con phpmyadmin.
    Questo link è utile
    https://www.wpwhitesecurity.com/manually-add-wordpress-user-administrator-role-wordpress-database/

    Se phpmyadmin non permette di aggiungere righe e quelli di nuova installazione possono anche non permetterlo, si prova modificando 2 righe della tabella

    wp_usermeta

    .

    Precisamente:

    wp_capabilities a:1:{s:13:”administrator”;b:1;}

    wp_user_level 10

    Ho provato questa seconda strada e funziona.
    Naturalmente l’operazione è a rischio e forse anche incompleta quindi appena ripreso l’accesso del pannello è meglio impostare dalla dashboard di wp un nuovo amministratore.

    Se phpmyadmin non è disponibile di può caricare, via FTP, uno script molto simile, “adminer” , https://www.adminer.org/

    Prima di modificare direttamente il database è meglio fare un backup perché anche se la situazione è compromessa si può sempre peggiorarla.

    Saluto.

    • Quando il cliente cerca di finalizzare il pagamento attraverso carta di credito, quindi dopo aver inserito tutti i dati gi appare questo messaggio che gli impedisce di proseguire con l’acquisto bloccando l’operazione.
      Questo è il messaggio che appare:
      “ITEM_TOTAL_MISMATCH Should equal sum of (unit_amount*quantity) across all items for a given purcase_unit.”

      Questo è il report di sistema del sito`
      ### WordPress Environment ###

      WordPress address (URL): https://www.ciminadolciaria.com
      Site address (URL): https://www.ciminadolciaria.com
      WC Version: 6.6.1
      REST API Version: ✔ 6.6.1
      WC Blocks Version: ✔ 7.6.2
      Action Scheduler Version: ✔ 3.4.0
      Log Directory Writable: ✔
      WP Version: ❌ 5.9.3 – È disponibile una versione più recente di WordPress (6.0.1)
      WP Multisite: –
      WP Memory Limit: 1 GB
      WP Debug Mode: –
      WP Cron: ✔
      Language: it_IT
      External object cache: –

      ### Server Environment ###

      Server Info: Apache
      PHP Version: 7.4.30
      PHP Post Max Size: 150 MB
      PHP Time Limit: 300
      PHP Max Input Vars: 12000
      cURL Version: 7.83.1
      OpenSSL/1.1.1o

      SUHOSIN Installed: –
      MySQL Version: 5.7.38-log
      Max Upload Size: 150 MB
      Default Timezone is UTC: ✔
      fsockopen/cURL: ✔
      SoapClient: ✔
      DOMDocument: ✔
      GZip: ✔
      Multibyte String: ✔
      Remote Post: ✔
      Remote Get: ✔

      ### Database ###

      WC Database Version: 6.6.1
      WC Database Prefix: wp_
      Dimensione totale database: 58.88MB
      Dimensione dati database: 47.10MB
      Dimensione indice database: 11.78MB
      wp_woocommerce_sessions: Dati: 0.09MB + indice: 0.02MB + motore InnoDB
      wp_woocommerce_api_keys: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_woocommerce_attribute_taxonomies: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_woocommerce_downloadable_product_permissions: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
      wp_woocommerce_order_items: Dati: 0.17MB + indice: 0.08MB + motore InnoDB
      wp_woocommerce_order_itemmeta: Dati: 1.52MB + indice: 1.92MB + motore InnoDB
      wp_woocommerce_tax_rates: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
      wp_woocommerce_tax_rate_locations: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_woocommerce_shipping_zones: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_woocommerce_shipping_zone_locations: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_woocommerce_shipping_zone_methods: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_woocommerce_payment_tokens: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_woocommerce_payment_tokenmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_woocommerce_log: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_actionscheduler_actions: Dati: 1.02MB + indice: 0.16MB + motore InnoDB
      wp_actionscheduler_claims: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_actionscheduler_groups: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_actionscheduler_logs: Dati: 0.52MB + indice: 0.42MB + motore InnoDB
      wp_aioseo_cache: Dati: 0.16MB + indice: 0.03MB + motore InnoDB
      wp_aioseo_notifications: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
      wp_aioseo_posts: Dati: 0.09MB + indice: 0.02MB + motore InnoDB
      wp_cmplz_cookiebanners: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_cmplz_cookies: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_cmplz_dnsmpd: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_cmplz_services: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_cmplz_statistics: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_commentmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_comments: Dati: 0.16MB + indice: 0.09MB + motore InnoDB
      wp_e_events: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_links: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_options: Dati: 6.22MB + indice: 0.16MB + motore InnoDB
      wp_postmeta: Dati: 9.52MB + indice: 4.03MB + motore InnoDB
      wp_posts: Dati: 2.52MB + indice: 0.33MB + motore InnoDB
      wp_revslider_css: Dati: 0.13MB + indice: 0.00MB + motore InnoDB
      wp_revslider_css_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_revslider_layer_animations: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_revslider_layer_animations_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_revslider_navigations: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_revslider_navigations_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_revslider_sliders: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_revslider_sliders_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_revslider_slides: Dati: 0.11MB + indice: 0.00MB + motore InnoDB
      wp_revslider_slides_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_revslider_static_slides: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_revslider_static_slides_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_sbi_feeds: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_sbi_feed_caches: Dati: 0.14MB + indice: 0.02MB + motore InnoDB
      wp_sbi_instagram_feeds_posts: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_sbi_instagram_feed_locator: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_sbi_instagram_posts: Dati: 0.11MB + indice: 0.00MB + motore InnoDB
      wp_sbi_sources: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_termmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_terms: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_term_relationships: Dati: 0.06MB + indice: 0.02MB + motore InnoDB
      wp_term_taxonomy: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_usermeta: Dati: 1.52MB + indice: 2.02MB + motore InnoDB
      wp_users: Dati: 0.08MB + indice: 0.05MB + motore InnoDB
      wp_wcpdf_invoice_number: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wcpdf_packing_slip_number: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wc_admin_notes: Dati: 0.08MB + indice: 0.00MB + motore InnoDB
      wp_wc_admin_note_actions: Dati: 0.05MB + indice: 0.02MB + motore InnoDB
      wp_wc_category_lookup: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wc_customer_lookup: Dati: 0.06MB + indice: 0.03MB + motore InnoDB
      wp_wc_download_log: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_wc_order_coupon_lookup: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_wc_order_product_lookup: Dati: 0.16MB + indice: 0.19MB + motore InnoDB
      wp_wc_order_stats: Dati: 0.06MB + indice: 0.05MB + motore InnoDB
      wp_wc_order_tax_lookup: Dati: 0.06MB + indice: 0.03MB + motore InnoDB
      wp_wc_product_attributes_lookup: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wc_product_download_directories: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wc_product_meta_lookup: Dati: 0.06MB + indice: 0.09MB + motore InnoDB
      wp_wc_rate_limits: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wc_reserved_stock: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wc_tax_rate_classes: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wc_webhooks: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wfblockediplog: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wfblocks7: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
      wp_wfconfig: Dati: 0.48MB + indice: 0.00MB + motore InnoDB
      wp_wfcrawlers: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wffilechanges: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wffilemods: Dati: 11.52MB + indice: 0.00MB + motore InnoDB
      wp_wfhits: Dati: 1.33MB + indice: 0.09MB + motore InnoDB
      wp_wfhoover: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wfissues: Dati: 0.06MB + indice: 0.06MB + motore InnoDB
      wp_wfknownfilelist: Dati: 5.52MB + indice: 0.00MB + motore InnoDB
      wp_wflivetraffichuman: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wflocs: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wflogins: Dati: 0.28MB + indice: 0.13MB + motore InnoDB
      wp_wfls_2fa_secrets: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wfls_settings: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wfnotifications: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wfpendingissues: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
      wp_wfreversecache: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wfsnipcache: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
      wp_wfstatus: Dati: 0.13MB + indice: 0.11MB + motore InnoDB
      wp_wftrafficrates: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wpfm_backup: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_yith_wcwl: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_yith_wcwl_lists: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_yoast_indexable: Dati: 1.50MB + indice: 0.27MB + motore InnoDB
      wp_yoast_indexable_hierarchy: Dati: 0.06MB + indice: 0.05MB + motore InnoDB
      wp_yoast_migrations: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_yoast_primary_term: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_yoast_seo_links: Dati: 0.17MB + indice: 0.14MB + motore InnoDB

      ### Post Type Counts ###

      attachment: 309
      custom_css: 1
      dflip: 3
      elementor_font: 1
      elementor_icons: 1
      elementor_library: 4
      mc4wp-form: 1
      nav_menu_item: 146
      oembed_cache: 1
      ovic_footer: 1
      ovic_menu: 6
      page: 23
      post: 1
      product: 140
      product_variation: 44
      revision: 373
      shop_coupon: 5
      shop_order: 323
      shop_order_refund: 1
      viwec_template: 15
      wpcf7_contact_form: 4
      wp_global_styles: 1

      ### Security ###

      Secure connection (HTTPS): ✔
      Hide errors from visitors: ✔

      ### Active Plugins (32) ###

      3D FlipBook : Dflip Lite: by DearHive – 1.7.31
      FiboSearch – AJAX Search for WooCommerce: by FiboSearch Team – 1.18.1
      Akismet Anti-Spam: by Automattic – 4.2.4
      Click to Chat: by HoliThemes – 3.9.10
      Complianz Privacy Suite (GDPR/CCPA) premium: by Really Simple Plugins – 6.2.4
      Contact Form 7: by Takayuki Miyoshi – 5.6
      Elementor Pro: by Elementor.com – 3.1.0
      Elementor: by Elementor.com – 3.6.7
      Email Template Customizer for WooCommerce: by VillaTheme – 1.1.10
      Smash Balloon Instagram Feed: by Smash Balloon – 6.0.6
      Jetpack: by Automattic – 11.1
      Loco Translate: by Tim Whitlock – 2.6.2
      Ovic Addon Toolkit: by Ovic Team – 2.5.5
      Ovic: Import Demo: by Ovic Team – 1.5.9
      Ovic: Product Bundle: by Ovic Team – 1.1.1
      PW WooCommerce Bulk Edit: by Pimwick
      LLC – 2.103

      Slider Revolution: by ThemePunch – 6.2.23
      WooCommerce Smart COD: by woosmartcod.com – 1.6.1
      WebP Express: by Bjørn Rosell – 0.25.5
      Advanced Order Export For WooCommerce: by AlgolPlus – 3.3.1
      Variation Swatches for WooCommerce: by RadiusTheme – 2.1.1.8
      WooCommerce Satispay: by Satispay – 2.0.0
      WooCommerce PayPal Payments: by WooCommerce – 1.9.0
      WooCommerce PDF Invoices & Packing Slips: by WP Overnight – 3.0.0
      WooCommerce: by Automattic – 6.6.1 (aggiornamento alla versione 6.7.0 disponibile)
      Wordfence Security: by Wordfence – 7.5.11
      Yoast SEO: by Team Yoast – 19.2
      WP Fastest Cache: by Emre Vona – 1.0.2
      Gestore di file WP: by mndpsingh287 – 7.1.6
      YITH WooCommerce Compare: by YITH – 2.15.0
      YITH WooCommerce Quick View: by YITH – 1.17.0
      YITH WooCommerce Wishlist: by YITH – 3.10.0

      ### Inactive Plugins (0) ###

      ### Must Use Plugins (1) ###

      WordPress automation by Installatron: by –

      ### Settings ###

      API Enabled: ✔
      Force SSL: –
      Currency: EUR (€)
      Currency Position: left
      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: –
      Enforce Approved Product Download Directories: –

      ### WC Pages ###

      Shop base: #11278 – /shop/
      Carrello: #11279 – /cart/
      Pagamento: #11280 – /checkout/
      Il mio account: #11 – /my-account/
      Termini e condizioni: ❌ La pagina non è impostata

      ### Theme ###

      Name: Armania Child
      Version: 1.1.5.1601989261
      Author URL: https://kutethemes.com/
      Child Theme: ✔
      Parent Theme Name: Armania
      Parent Theme Version: 1.2.2
      Parent Theme Author URL: https://kutethemes.com/
      WooCommerce Support: ✔

      ### Templates ###

      Overrides: armania/woocommerce/cart/cross-sells.php
      armania/woocommerce/content-product.php
      armania/woocommerce/content-single-product.php
      armania/woocommerce/global/quantity-input.php
      armania/woocommerce/global/wrapper-end.php
      armania/woocommerce/global/wrapper-start.php
      armania/woocommerce/loop/add-to-cart.php
      armania/woocommerce/loop/loop-end.php
      armania/woocommerce/loop/loop-start.php
      armania/woocommerce/loop/pagination.php
      armania/woocommerce/loop/sale-flash.php
      armania/woocommerce/single-product/meta.php
      armania/woocommerce/single-product/related.php
      armania/woocommerce/single-product/stock.php
      armania/woocommerce/single-product/tabs/tabs.php
      armania/woocommerce/single-product/up-sells.php

      ### WooCommerce PayPal Payments ###

      Onboarded: ✔
      Shop country code: IT
      WooCommerce currency supported: ✔
      PayPal card processing available in country: ✔
      Pay Later messaging available in country: ✔
      Webhook status: –
      Vault enabled: ✔
      Logging enabled: –
      Reference Transactions: –
      Used PayPal Checkout plugin: ✔

      ### Admin ###

      Enabled Features: activity-panels
      analytics
      coupons
      customer-effort-score-tracks
      experimental-products-task
      experimental-import-products-task
      experimental-fashion-sample-products
      homescreen
      marketing
      mobile-app-banner
      navigation
      onboarding
      onboarding-tasks
      remote-inbox-notifications
      remote-free-extensions
      payment-gateway-suggestions
      shipping-label-banner
      subscriptions
      store-alerts
      transient-notices
      wc-pay-promotion
      wc-pay-welcome-page
      wc-pay-subscriptions-page

      Disabled Features: minified-js
      settings

      Daily Cron: ✔ Next scheduled: 2022-07-15 12:41:38 +00:00
      Options: ✔
      Notes: 93
      Onboarding: completed

      ### Action Scheduler ###

      Completato: 261
      Oldest: 2022-06-14 07:43:52 +0000
      Newest: 2022-07-14 12:40:40 +0000

      In attesa: 1
      Oldest: 2022-07-15 10:15:32 +0000
      Newest: 2022-07-15 10:15:32 +0000

      ### Status report information ###

      Generated at: 2022-07-14 13:31:08 +00:00
      `

    • Hello,
      I’m trying to figure out with the Home and the customer pages only of Woocommerce when clicked are loading and then blank content.

      I’ve my website fully updated, and as recommended I started disabling all plugins, switching back to the Twenty-twenty themes but nothing change. Even after relading the page without cache ( CTRL + SHIFT + R ).

      I had a look with F12 and I see the following problems:

      1) First error, related to the file path just below.
      Failed to load resource: the server responded with a status of 404 ()
      https://adamahstore.com/wp-content/plugins/woocommerce/packages/woocommerce-admin/dist/components/index.js?ver=3.2.1

      2) Second erro, related to the files linked here: https://adamahstore.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=17.0.1

      TypeError: Cannot read properties of undefined (reading 'Spinner')
          at ne.render (index.js?ver=3.2.1:2:17797)
          at Te (react-dom.min.js?ver=17.0.1:119:308)
          at Ch (react-dom.min.js?ver=17.0.1:119:105)
          at Pj (react-dom.min.js?ver=17.0.1:233:139)
          at di (react-dom.min.js?ver=17.0.1:168:305)
          at Nj (react-dom.min.js?ver=17.0.1:168:236)
          at sc (react-dom.min.js?ver=17.0.1:168:96)
          at gf (react-dom.min.js?ver=17.0.1:162:109)
          at Pa (react-dom.min.js?ver=17.0.1:157:184)
          at yd (react-dom.min.js?ver=17.0.1:188:476)

      This below the system status report of WC:

      
      ### WordPress Environment ###
      
      WordPress address (URL): https://adamahstore.com
      Site address (URL): https://adamahstore.com
      WC Version: 6.3.1
      REST API Version: ✔ 6.3.1
      WC Blocks Version: ✔ 6.9.0
      Action Scheduler Version: ✔ 3.4.0
      WC Admin Version: ✔ 3.2.1
      Log Directory Writable: ✔
      WP Version: 5.9.3
      WP Multisite: –
      WP Memory Limit: 1 GB
      WP Debug Mode: –
      WP Cron: ✔
      Language: it_IT
      External object cache: –
      
      ### Server Environment ###
      
      Server Info: Apache
      PHP Version: 8.0.17
      PHP Post Max Size: 150 MB
      PHP Time Limit: 180
      PHP Max Input Vars: 12000
      cURL Version: 7.81.0
      OpenSSL/1.1.1n
      
      SUHOSIN Installed: –
      MySQL Version: 8.0.28
      Max Upload Size: 150 MB
      Default Timezone is UTC: ✔
      fsockopen/cURL: ✔
      SoapClient: ✔
      DOMDocument: ✔
      GZip: ✔
      Multibyte String: ✔
      Remote Post: ✔
      Remote Get: ✔
      
      ### Database ###
      
      WC Database Version: 6.3.1
      WC Database Prefix: wp_
      Dimensione totale database: 20.98MB
      Dimensione dati database: 17.16MB
      Dimensione indice database: 3.82MB
      wp_woocommerce_sessions: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_woocommerce_api_keys: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_woocommerce_attribute_taxonomies: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_woocommerce_downloadable_product_permissions: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
      wp_woocommerce_order_items: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_woocommerce_order_itemmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_woocommerce_tax_rates: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
      wp_woocommerce_tax_rate_locations: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_woocommerce_shipping_zones: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_woocommerce_shipping_zone_locations: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_woocommerce_shipping_zone_methods: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_woocommerce_payment_tokens: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_woocommerce_payment_tokenmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_woocommerce_log: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_actionscheduler_actions: Dati: 0.16MB + indice: 0.16MB + motore InnoDB
      wp_actionscheduler_claims: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_actionscheduler_groups: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_actionscheduler_logs: Dati: 0.09MB + indice: 0.09MB + motore InnoDB
      wp_commentmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_comments: Dati: 0.02MB + indice: 0.09MB + motore InnoDB
      wp_e_events: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_e_submissions: Dati: 0.02MB + indice: 0.23MB + motore InnoDB
      wp_e_submissions_actions_log: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_e_submissions_values: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_gla_budget_recommendations: Dati: 0.22MB + indice: 0.14MB + motore InnoDB
      wp_gla_merchant_issues: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_gla_shipping_rates: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_gla_shipping_times: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_links: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_custom_fields: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_dynamic_segment_filters: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_feature_flags: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_forms: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_mailpoet_log: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_mailpoet_mapping_to_external_entities: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_newsletter_links: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
      wp_mailpoet_newsletter_option: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_newsletter_option_fields: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_newsletter_posts: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_newsletter_segment: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_newsletter_templates: Dati: 2.52MB + indice: 0.00MB + motore InnoDB
      wp_mailpoet_newsletters: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_mailpoet_scheduled_task_subscribers: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_scheduled_tasks: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_mailpoet_segments: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_mailpoet_sending_queues: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_mailpoet_settings: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_statistics_bounces: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_mailpoet_statistics_clicks: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
      wp_mailpoet_statistics_forms: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_statistics_newsletters: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_mailpoet_statistics_opens: Dati: 0.02MB + indice: 0.08MB + motore InnoDB
      wp_mailpoet_statistics_unsubscribes: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
      wp_mailpoet_statistics_woocommerce_purchases: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
      wp_mailpoet_stats_notifications: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_mailpoet_subscriber_custom_field: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_subscriber_ips: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_subscriber_segment: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_mailpoet_subscribers: Dati: 0.02MB + indice: 0.13MB + motore InnoDB
      wp_mailpoet_user_agents: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_mailpoet_user_flags: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_nextend2_image_storage: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_nextend2_section_storage: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
      wp_nextend2_smartslider3_generators: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_nextend2_smartslider3_sliders: Dati: 0.05MB + indice: 0.03MB + motore InnoDB
      wp_nextend2_smartslider3_sliders_xref: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_nextend2_smartslider3_slides: Dati: 0.05MB + indice: 0.11MB + motore InnoDB
      wp_options: Dati: 3.09MB + indice: 0.08MB + motore InnoDB
      wp_postmeta: Dati: 5.45MB + indice: 0.42MB + motore InnoDB
      wp_posts: Dati: 3.48MB + indice: 0.22MB + motore InnoDB
      wp_term_relationships: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_term_taxonomy: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_termmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_terms: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_usermeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_users: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
      wp_wc_admin_note_actions: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wc_admin_notes: Dati: 0.05MB + indice: 0.00MB + motore InnoDB
      wp_wc_category_lookup: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wc_customer_lookup: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_wc_download_log: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_wc_order_coupon_lookup: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_wc_order_product_lookup: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
      wp_wc_order_stats: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
      wp_wc_order_tax_lookup: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_wc_product_attributes_lookup: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_wc_product_meta_lookup: Dati: 0.02MB + indice: 0.09MB + motore InnoDB
      wp_wc_rate_limits: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wc_reserved_stock: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wc_tax_rate_classes: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wc_webhooks: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_woof_query_cache: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wpf_filters: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wpf_meta_keys: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wpf_meta_values: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
      wp_wpf_meta_values_bk: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
      wp_wpgmza: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wpgmza_circles: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wpgmza_maps: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wpgmza_polygon: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wpgmza_polylines: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wpgmza_rectangles: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      wp_wpml_mails: Dati: 0.14MB + indice: 0.00MB + motore InnoDB
      wp_wpmm_subscribers: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
      
      ### Post Type Counts ###
      
      attachment: 138
      custom_css: 1
      customize_changeset: 18
      elementor_icons: 2
      elementor_library: 47
      mailpoet_page: 1
      nav_menu_item: 40
      page: 18
      post: 8
      product: 43
      product_variation: 17
      revision: 604
      shop_order: 8
      wp_global_styles: 2
      yith_wcan_preset: 1
      
      ### Security ###
      
      Secure connection (HTTPS): ✔
      Hide errors from visitors: ✔
      
      ### Active Plugins (4) ###
      
      Elementor Pro: by Elementor.com – 3.6.4
      Elementor: by Elementor.com – 3.6.2
      WooCommerce Stripe Gateway: by WooCommerce – 6.3.0
      WooCommerce: by Automattic – 6.3.1
      
      ### Inactive Plugins (14) ###
      
      Akismet Anti-Spam: by Automattic – 4.2.2
      Dynamic Visibility for Elementor: by Dynamic.ooo – 4.1.2
      Google Language Translator: by Translate AI Multilingual Solutions – 6.0.14
      Google Listings and Ads: by WooCommerce – 1.11.1
      Ibtana - WordPress Website Builder: by VowelWeb – 1.1.5
      Insert Headers and Footers: by WPBeginner – 1.6.0
      Jetpack: by Automattic – 10.7
      MailPoet 3 (New): by MailPoet – 3.84.0
      Post Slider and Carousel with Widget: by InfornWeb – 2.1.2
      Variation Swatches for WooCommerce: by Emran Ahmed – 1.1.19
      WOOF - WooCommerce Products Filter: by realmag777 – 1.2.6.4
      WooLentor - WooCommerce Elementor Addons + Builder: by HasThemes – 2.2.4
      WP Maintenance Mode & Coming Soon: by Themeisle – 2.4.4
      WP Responsive Recent Post Slider/Carousel: by WP OnlineSupport
      Essential Plugin – 3.0.8
      
      ### Must Use Plugins (1) ###
      
      Elementor Safe Mode: by Elementor.com – 1.0.0
      
      ### 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: #6 - /negozio/
      Carrello: #7 - /carrello/
      Pagamento: #8 - /pagamento/
      Il mio account: #9 - /mio-account/
      Termini e condizioni: #10 - /rimborso_reso/
      
      ### Theme ###
      
      Name: Twenty Twenty
      Version: 1.9
      Author URL: https://it.wordpress.org/
      Child Theme: ❌ – Se stai modificando WooCommerce o un tema genitore che non hai costruito personalmente
      ti consigliamo di utilizzare un tema child. Vedi: Come creare un tema child
      
      WooCommerce Support: ✔
      
      ### Templates ###
      
      Overrides: –
      
      ### Action Scheduler ###
      
      Completato: 424
      Oldest: 2022-03-12 10:15:32 +0100
      Newest: 2022-04-11 19:41:02 +0200
      
      In attesa: 2
      Oldest: 2022-04-11 20:01:15 +0200
      Newest: 2022-04-12 17:10:04 +0200
      
      ### Status report information ###
      
      Generated at: 2022-04-11 20:00:40 +02:00
      

      Can anyone support me?

      Many thanks!

      La pagina su cui ho bisogno di aiuto: [devi essere connesso per vedere il link]

    Forum: Varie ed eventuali
    Come il topic: problema con XAMPP
    • Buongiorno a tutti, ho un problema con XAMPP.
      Ho realizzato un intero sito internet in locale con WordPress e dopo un po’ di tempo sono rientrato ma XAMPP dava problemi di connessione con MySQL. Ho provato a cambiare le porte ma non ha funzionato. Così nella cartella di XAMPP > MySQL ho creato una nuova cartella “data” (dopo aver fatto un bkp di quella già esistente), dove sono andato ad inserire i file della cartella “backup” creata in automatico da XAMPP più i file della cartella “nomesito” (presente nella vecchia cartella “data”). In questo modo da XAMPP non da più errore, ma tentando di visualizzare il sito in locale appare la scritta “Errore nello stabilire una connessione al database”, stesso problema se da XAMPP clicco sul pulsante admin. Mi appaiono le seguenti scritte:

      Errore
      Messaggio di MySQL: Documentazione
      
      Impossibile connettersi: impostazioni non valide.
       mysqli::real_connect(): (HY000/2002): Impossibile stabilire la connessione. Rifiuto persistente del computer di destinazione
       Connessione per controluser come definito nella configurazione fallita.
       mysqli::real_connect(): (HY000/2002): Impossibile stabilire la connessione. Rifiuto persistente del computer di destinazione
       phpMyAdmin ha provato a connettersi al server MySQL, e il server ha rifiutato la connessione. Si dovrebbe controllare il nome dell'host, l'username e la password nel file di configurazione ed assicurarsi che corrispondano alle informazioni fornite dall'amministratore del server MySQL.

      Qualcuno sa darmi una mano per risolvere? Non vorrei perdere tutto il lavoro fatto

    • Ciao a tutti.
      Premetto che sono nuovo e poco esperto di wp.
      Sto cercando di aiutare un amico a fare un sito su ionos.
      Ho scaricato il db e tutto il sito esistente (al momento solo una home).
      In locale, utilizzo xampp ed ho cercato di collegare il sito al db, modificando il file wp-config.php apportato le seguenti modifiche:

      // ** MySQL settings - You can get this info from your web host ** //
      /** The name of the database for WordPress */
      define( 'DB_NAME', 'nome db in locale' );
      
      /** MySQL database username */
      define( 'DB_USER', 'root' );
      
      /** MySQL database password */
      define( 'DB_PASSWORD', '' );
      
      /** MySQL hostname */
      define( 'DB_HOST', 'localhost' );

      Ma quando richiamo la pagina : localhost/nomesito nel browser, mi dice che:

      Non sicuro https://localhost/dashboard/ (con https barrato).

      Provo a forzare e a sostituire la scritta dashboard con il nome del sito e la pagina si apre, ma mi da sempre lo stesso messaggio di sopra:

      Non sicuro https://localhost/nomesito/ (con https barrato).

      Cerco di aprirlo in wp ( https://localhost/nomesito/wp-admin) e si apre, ma Elementor non si avvia (nemmeno in modalità provvisoria).

      Quindi, vi chiedo dove è che sbaglio e perché non si avvia nemmeno Elementor.

      Finora, in locale non ho mai avuto problemi, seguendo anche molti tutorials online.
      Grazie per chi vorrà darmi una mano e a presto

    Chi ha creato la discussione ktstoremgr

    (@ktstoremgr)

    Aggiungo il Report di sistema nel caso servisse

    `
    ### WordPress Environment ###

    WordPress address (URL): https://staging2.kompo-tech.com
    Site address (URL): https://staging2.kompo-tech.com
    WC Version: 5.3.0
    REST API Version: ✔ 5.3.0
    WC Blocks Version: ✔ 4.9.1
    Action Scheduler Version: ✔ 3.1.6
    WC Admin Version: ✔ 2.2.6
    Log Directory Writable: ✔
    WP Version: 5.7.2
    WP Multisite: –
    WP Memory Limit: 768 MB
    WP Debug Mode: –
    WP Cron: ✔
    Language: it_IT
    External object cache: –

    ### Server Environment ###

    Server Info: Apache
    PHP Version: 7.3.28
    PHP Post Max Size: 256 MB
    PHP Time Limit: 300
    PHP Max Input Vars: 3000
    cURL Version: 7.66.0
    OpenSSL/1.1.1k-fips

    SUHOSIN Installed: –
    MySQL Version: 5.7.32-35-log
    Max Upload Size: 256 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔

    ### Database ###

    WC Database Version: 5.3.0
    WC Database Prefix: ktswp0a_
    Dimensione totale database: 18.94MB
    Dimensione dati database: 11.68MB
    Dimensione indice database: 7.26MB
    ktswp0a_woocommerce_sessions: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
    ktswp0a_woocommerce_api_keys: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_woocommerce_attribute_taxonomies: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
    ktswp0a_woocommerce_downloadable_product_permissions: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
    ktswp0a_woocommerce_order_items: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
    ktswp0a_woocommerce_order_itemmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_woocommerce_tax_rates: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
    ktswp0a_woocommerce_tax_rate_locations: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_woocommerce_shipping_zones: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_woocommerce_shipping_zone_locations: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_woocommerce_shipping_zone_methods: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_woocommerce_payment_tokens: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
    ktswp0a_woocommerce_payment_tokenmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_woocommerce_log: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
    ktswp0a_actionscheduler_actions: Dati: 0.02MB + indice: 0.11MB + motore InnoDB
    ktswp0a_actionscheduler_claims: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
    ktswp0a_actionscheduler_groups: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
    ktswp0a_actionscheduler_logs: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_commentmeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_comments: Dati: 0.02MB + indice: 0.09MB + motore InnoDB
    ktswp0a_ffirewall_block_list: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_layerslider: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_layerslider_revisions: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_links: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
    ktswp0a_options: Dati: 4.23MB + indice: 0.16MB + motore InnoDB
    ktswp0a_postmeta: Dati: 4.52MB + indice: 5.03MB + motore InnoDB
    ktswp0a_posts: Dati: 1.48MB + indice: 0.55MB + motore InnoDB
    ktswp0a_revslider_css: Dati: 0.13MB + indice: 0.00MB + motore InnoDB
    ktswp0a_revslider_css_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_revslider_layer_animations: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_revslider_layer_animations_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_revslider_navigations: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_revslider_navigations_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_revslider_sliders: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_revslider_sliders_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_revslider_slides: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_revslider_slides_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_revslider_static_slides: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_revslider_static_slides_bkp: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_termmeta: Dati: 0.05MB + indice: 0.03MB + motore InnoDB
    ktswp0a_terms: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_term_relationships: Dati: 0.09MB + indice: 0.06MB + motore InnoDB
    ktswp0a_term_taxonomy: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_usermeta: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_users: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
    ktswp0a_wc_admin_notes: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_wc_admin_note_actions: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
    ktswp0a_wc_category_lookup: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_wc_customer_lookup: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_wc_download_log: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_wc_order_coupon_lookup: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_wc_order_product_lookup: Dati: 0.02MB + indice: 0.06MB + motore InnoDB
    ktswp0a_wc_order_stats: Dati: 0.02MB + indice: 0.05MB + motore InnoDB
    ktswp0a_wc_order_tax_lookup: Dati: 0.02MB + indice: 0.03MB + motore InnoDB
    ktswp0a_wc_product_meta_lookup: Dati: 0.16MB + indice: 0.31MB + motore InnoDB
    ktswp0a_wc_reserved_stock: Dati: 0.02MB + indice: 0.00MB + motore InnoDB
    ktswp0a_wc_tax_rate_classes: Dati: 0.02MB + indice: 0.02MB + motore InnoDB
    ktswp0a_wc_webhooks: Dati: 0.02MB + indice: 0.02MB + motore InnoDB

    ### Post Type Counts ###

    attachment: 1067
    nav_menu_item: 109
    page: 44
    post: 4
    product: 293
    product_variation: 877

    ### Security ###

    Secure connection (HTTPS): ✔
    Hide errors from visitors: ✔

    ### Active Plugins (13) ###

    LayerSlider WP: by Kreatura Media – 6.11.7
    Advanced Custom Fields PRO: by Elliot Condon – 5.9.5
    Advanced Database Cleaner PRO: by Younes JFR. – 3.1.6
    Classic Editor: by Contributori WordPress – 1.6
    Disable Comments: by WPDeveloper – 2.1.1
    Duplica pagina: by mndpsingh287 – 4.4
    Envato Market: by Envato – 2.0.6
    Facebook for WooCommerce: by Facebook – 2.5.1
    WPBakery Page Builder: by Michael M – WPBakery.com – 6.6.0
    Stop User Enumeration: by Fullworks – 1.3.29
    WooCommerce Fattureincloud Premium: by Woofatture – 2.2.0
    WooCommerce Wholesale Prices: by Rymera Web Co – 1.14.1
    WooCommerce: by Automattic – 5.3.0

    ### Inactive Plugins (7) ###

    Advanced WordPress Reset: by Younes JFR. – 1.1.1
    Cookie Notice & Compliance for GDPR / CCPA: by Hu-manity.co – 2.0.4
    Loginizer Security: by Softaculous – 1.6.6
    Maintenance: by WebFactory Ltd – 4.02
    Minimal Coming Soon & Maintenance Mode: by WebFactory Ltd – 2.27
    SG Optimizer: by SiteGround – 5.7.20
    Slider Revolution: by ThemePunch – 6.3.9

    ### Settings ###

    API Enabled: ✔
    Force SSL: –
    Currency: EUR (€)
    Currency Position: left
    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: #5 – /shop/
    Carrello: #6 – /cart/
    Pagamento: #7 – /checkout/
    Il mio account: #8 – /my-account/
    Termini e condizioni: #1482 – /terms-conditions/

    ### Theme ###

    Name: Aurum – Child Theme
    Version: 1.0
    Author URL: http://laborator.co/
    Child Theme: ✔
    Parent Theme Name: Aurum
    Parent Theme Version: 3.10
    Parent Theme Author URL: https://laborator.co/
    WooCommerce Support: ✔

    ### Templates ###

    Overrides: aurum/woocommerce/archive-product.php
    aurum/woocommerce/cart/cart-empty.php
    aurum/woocommerce/cart/cart-shipping.php
    aurum/woocommerce/cart/cart-totals.php
    aurum/woocommerce/cart/cross-sells.php
    aurum/woocommerce/cart/shipping-calculator.php
    aurum/woocommerce/checkout/form-checkout.php
    aurum/woocommerce/checkout/form-coupon.php
    aurum/woocommerce/checkout/form-login.php
    aurum/woocommerce/checkout/form-pay.php
    aurum/woocommerce/checkout/payment-method.php
    aurum/woocommerce/checkout/thankyou.php
    aurum/woocommerce/content-product.php
    aurum/woocommerce/global/form-login.php
    aurum/woocommerce/loop/orderby.php
    aurum/woocommerce/loop/pagination.php
    aurum/woocommerce/loop/sale-flash.php
    aurum/woocommerce/myaccount/form-edit-account.php
    aurum/woocommerce/myaccount/form-edit-address.php
    aurum/woocommerce/myaccount/form-login.php
    aurum/woocommerce/myaccount/form-lost-password.php
    aurum/woocommerce/myaccount/form-reset-password.php
    aurum/woocommerce/myaccount/my-address.php
    aurum/woocommerce/myaccount/view-order.php
    aurum/woocommerce/order/form-tracking.php
    aurum/woocommerce/order/order-details.php
    aurum/woocommerce/order/order-downloads.php
    aurum/woocommerce/single-product/sale-flash.php
    aurum/woocommerce/single-product-reviews.php

    ### Action Scheduler ###

    Completato: 2
    Oldest: 2021-05-31 15:33:39 +0000
    Newest: 2021-06-01 12:22:59 +0000

    ### Status report information ###

    Generated at: 2021-06-01 12:57:29 +00:00

    Il file wp-config.php non è leggibile perché è in php. Questi codici non può vederli. Oppure cambi nome al database:

    // ** Impostazioni MySQL - È possibile ottenere queste informazioni dal proprio fornitore di hosting ** //
    /** Il nome del database di WordPress */
    define('DB_NAME', 'mio_database');
    /** Nome utente del database MySQL */
    define('DB_USER', 'root');
    /** Password del database MySQL */
    define('DB_PASSWORD', 'root');
    /** Hostname MySQL  */
    define('DB_HOST', 'localhost');
    /** Charset del Database da utilizzare nella creazione delle tabelle. */
    define('DB_CHARSET', 'utf8mb4');
    /** Il tipo di Collazione del Database. Da non modificare se non si ha idea di cosa sia. */
    define('DB_COLLATE', '');
    Chi ha creato la discussione paestum1997

    (@paestum1997)

    @webepc ho attivato il database e ho reinstallato wordpress da zero. Ora mi fa accedere alla console.
    Poi, ho provato a riattivare il backup del vecchio database e non mi da l’accesso alla console. Quindi effettivamente c’è un problema al database.
    Vorrei recuperare le pagine per non fare da zero il tutto, quali tabelle dovrei importare senza importare le tabelle user ecc? Sempre se sia possibile

    Ovviamente ho solo fatto il caricamento del vecchio DB. Non ho importato di nuovo wp-content. Non so se questo influisce sul collegamento alla dashboard

    • Questa risposta è stata modificata 5 anni, 4 mesi fa da paestum1997.
    Moderator Cristiano Zanca

    (@cristianozanca)

    Ciao condorex ,

    Prima di tutto fare un BACKUP

    il consiglio per aggiornare i percorsi è di seguire le istruzioni della documentazione :

    If you do a search and replace on your entire database to change the URLs, you can cause issues with data serialization, due to the fact that some themes and widgets store values with the length of your URL marked. When this changes, things break. To avoid that serialization issue, you have three options:

    Use the Velvet Blues Update URLs or Better Search Replace plugins if you can access your Dashboard.

    Use WP-CLI’s search-replace if your hosting provider (or you) have installed WP-CLI.

    Use the Search and Replace for WordPress Databases Script to safely change all instances on your old domain or path to your new one. (** only use this option if you are comfortable with database administration ** )

    tratto da
    https://wordpress.org/support/article/moving-wordpress/

    Aggiornaci

    Ciao @nero2001,

    è probabile che si sia qualcosa da sistemare sul database.

    Il valore che hai indicato è corretto, dice in sostanza che il tuo utente ha il ruolo di Amministratore. Poi ogni ruolo ha una serie di “capabilities”, cioè le azioni che può effettivamente compiere.

    Per verificarle cerca nella tabella wp_options la riga in cui il campo option_name contiene il valore wp_user_roles e guarda il contenuto del campo option_value.

    In un WordPress nuovo appena installato dovresti vedere questo contenuto:

    a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:61:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:0;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}

    Non è comodissimo da leggere, ma se guardi bene troverai i nomi di tutti i ruoli standard e le relative capabilities.

    Ognuna di queste è indicata con il nome e un valore 1/0 che indica se è abilitata.

    Partendo dall’inizio, troverai “administrator” seguito da tutte le capabilities ad esso assegnate. Prova a cercare quelle che contengono “_plugins”, ad esempio “install_plugins” e verifica che siano seguite da un 1.

    Ad esempio:

    s:15:”install_plugins”;b:0;

    In questo caso il valore boolean (b) è 0, quindi questo amministratore non può installare nuovi plugin. Per risolvere basta inserire 1 al posto dello 0.

    Prova a dare un’occhiata alla situazione di questa stringa sul database.
    Tieni presente però che:
    queste modifiche sono rischiose, prima di fare qualsiasi cosa accertati di avere un backup
    – il contenuto che trovi in quel campo potrebbe essere più articolato, poichè dipende dai plugin installati e dai valori che questi potrebbero aver inserito.

    Spero sia stato utile.
    Ciao 🙂

    • Questa risposta è stata modificata 5 anni, 8 mesi fa da Andrea Porotti.
    • Questa risposta è stata modificata 5 anni, 7 mesi fa da Cristiano Zanca.
Stai vedendo 15 risultati - da 16 a 30 (di 100 totali)