Risultati della ricerca per 'Wordpress database fix'
-
-
Sto iniziando ha creare un plugin iniziando con il menu in admin
<?php
namespace ex;
require_once EX_PLUGIN_PATH.'/include/class-info.php';
class Starter_plugin{
private $versione;
private $prefix;
function __construct()
{
$this->versione=Info::VERSIONE;
$this->prefix=Info::PREFIX;
//inserire gli hook
add_action('admin_menu', array($this, 'ex_menu'));
}
public function ex_menu (){
global $dati_menu, $submenu;
//dashicon
// add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $callback = '', $icon_url = '', $position = null )
$dati_menu =array(
'menu_title' => 'Exalunni-mt', //obligatorio
'page_title' => 'Exalunni.php',//obbigatorio
'capability' => 'manage_options', //obbligatorio e specifico non personalizato
'menu_slug' => 'ex',
'callback'=>'all_ex',
'icon_url'=>'dashicons-database',
'position'=>25
);
add_menu_page(
$dati_menu['page_title'], $dati_menu['menu_title'], $dati_menu['capability'],
$dati_menu['menu_slug'], $dati_menu['callback'],
$dati_menu['icon_url'], $dati_menu['position']
);
//add_submenu_page( string $parent_slug, string $page_title, string $menu_title, string $capability, string $menu_slug, callable $callback = ”, int|float $position = null ): string|false
add_submenu_page(
$parent_slug = 'ex',
$page_title = 'Exalunni',
$menu_title = 'ex1',
$capability = 'read',
$menu_slug = 'ex', //per rinominare la prima voce stesso slug del menu_page
$function = 'all_ex',
$position = 0
);
add_submenu_page(
$parent_slug = 'ex',
$page_title = 'ex',
$menu_title = 'ex2',
$capability = 'read',
$menu_slug = 'impostazioni-del-tema',
$function = 'ekw_settings1',
$position = 1
);
}
public function all_ex()
{
echo 'ex';
}
}
?>Fatal error: Uncaught TypeError: call_user_func_array(): Argument #1 ($callback) must be a valid callback, function "all_ex" not found or invalid function name in /var/www/html/wordpress/wp-includes/class-wp-hook.php:324 Stack trace: #0 /var/www/html/wordpress/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters() #1 /var/www/html/wordpress/wp-includes/plugin.php(517): WP_Hook->do_action() #2 /var/www/html/wordpress/wp-admin/admin.php(259): do_action() #3 {main} thrown in /var/www/html/wordpress/wp-includes/class-wp-hook.php on line 324
-
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.1oSUHOSIN 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.103Slider 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-pageDisabled Features: minified-js
settingsDaily 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 +0000In 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.12) 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:00Can anyone support me?
Many thanks!
La pagina su cui ho bisogno di aiuto: [devi essere connesso per vedere il link]
-
Buongiorno, ho creato un sito web in locale con wordpress e Elementor Pro attraverso il programma Local by Flywheel. Ho un NAS Synology DS218+ che uso come storage, ma ha anche la funzione di Hosting è la voglio sfruttare. Premetto che il dominio web lo acquisterò il prossimo mese. Ho installato con successo wordpress sul NAS e ho aperto la porta dall’esterno per visionare il sito. Tutto funziona perfettamente. Ho utilizzato “updraftPlus Migrator” per fare la migrazione da locale a NAS, a fine migrazione si disconnette chiedendomi di ricconettermi (ovviamente con ID e PW del sito in locale). Qua nasce il problema quando mi connetto con IP pubblico e relativa porta chiedendo il login mi da errore 502. Ho notato nella URL la seguente dicitura “http://fixtek.local/wp-login.php?redirect_to=http%3A%2F%2F192.168.178.25%3A81%2Fwp-admin%2F&reauth=1” quindi fa un reindirizzamento dal vecchio al nuovo, ma con esito negativo. Ho provato anche ad installarlo manualmente importanto database e modificando wp-config, stesso errore. Non so più cosa fare, qualche aiuto? Grazie.
-
Ciao Ragazzi !!!
Buongioro a tutti e grazie per il suporto
Sto cercando di installare sul mio nuovo sito wordpress, ho fatto tutto tramite filezilla all’inizion non avevo mysql e poi l’ho acquistato , dominio aruba windows.
Arrivato al punto di connessione al database mettendo tutti i dati mi esce quest’erroreImpossibile trovare il file http://www.ribolanets.com/wp-admin/setup-config.php?step=2.
se poi clicco riprova mi da
ERROR: “Table Prefix” must not be empty.Cosa devo fare ? ne sto uscendo pazzo
Grazie del supporto
-
Ciao ragazzi.
Ho una funzione all’interno di una classe che deve inserire una riga dentro il database, la riga viene inserita con successo e la funzione è la seguente:public function create_channel($name, $options) { global $wpdb; $opt_string = implode(';', $options); if(($userid = get_current_user_id()) > 0) { $wpdb->insert($wpdb->prefix.'_channels', array( 'founder' => $userid, 'name' => $name, 'options' => $opt_string ), array('%d','%s','%s')); return $wpdb->insert_id; } else return false; }D’altra parte, la funzione viene chiamata in un hook di WordPress (plugin activation hook) e questa è la parte che riguarda il problema:
$chan = new Channel(); if($chan->count_channels() == 0) $cid = $chan->create_channel('Default', $settings->options['channel']); throw new Exception(var_export($cid));Il problema è che $cid (che dovrebbe essere $wpdb->insert_id è NULL nonostante la riga venga inserita con successo, e nonostante la procedura sia quella! Ho provato anche a prendere la variabile da MySQL con $wpdb->get_var(‘SELECT LAST_INSERT_ID();’); ma niente, anche cosi mi da un valore nullo!
La tabella contiene una colonna AUTO_INCREMENT che è anche indicizzata da una chiave primaria, aiutatemi perché sto impazzendo da ore.
___Piccolo accorgimento:
Mi sono accorto che nella funzione “create_channel”, prima che venga eseguito l’inserimento della riga, l’oggetto $wpdb può essere messo in mostra correttamente (throw new Exception(var_export($wpdb))), mentre subito dopo l’inserimento della riga, se viene rifatta la stessa operazione (ovvero throw new Exception ecc.. quella scritta qua sopra) l’oggetto è assente, praticamente non mostra nulla (nemmeno NULL), proprio 0 caratteri.Aiutatemi gentilmente, ve ne sarò grato!
-