gpt4 book ai didi

php - WooCommerce 数据库错误

转载 作者:行者123 更新时间:2023-11-29 02:19:41 24 4
gpt4 key购买 nike

我的 Wordpress/WooCommerce 安装后端报告了一个错误。我几乎没有使用 SQL 的经验,所以我不知道从哪里开始解决这个问题。

具体来说,我有一个名为 Query Monitor 的插件,它会提醒后端的某些页面正在产生数据库错误。其中最有问题的是显示重复错误的“编辑产品”屏幕。报错如下:

查询

SELECT postmeta.post_id AS product_id 
FROM wp_postmeta AS postmeta
LEFT JOIN wp_posts AS products
ON ( products.ID = postmeta.post_id )
WHERE postmeta.meta_key LIKE 'attribute_%'
AND postmeta.meta_value = 'uk-10'
AND products.post_parent =

调用堆栈

display_price_in_variation_option_name()
apply_filters('woocommerce_variation_option_name')
WC_Meta_Box_Product_Data::output_variations()
WC_Meta_Box_Product_Data::output()
do_meta_boxes()

组件

Plugin: woocommerce

错误

You have an error in your SQL syntax; 
check the manual that corresponds to your MariaDB server
version for the right syntax to use near '' at line 6

这是我的主题文件之一的问题还是我需要仔细查看数据库?

非常感谢任何帮助!

最佳答案

你错过了 where 的值,(最后一个)

WHERE postmeta.meta_key LIKE 'attribute_%' 
AND postmeta.meta_value = 'uk-10'
AND products.post_parent = ""
^// here

关于php - WooCommerce 数据库错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33890439/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com