我正在尝试使用 php 代码设置 max_allowed_packet 但我收到此错误:
WordPress 数据库错误访问被拒绝;对于由 require('wp-blog-header.php')、require_once('wp-load.php')、require_once('wp-config.php' ), require_once('wp-settings.php'), include('/themes/supreme/functions.php')
我的 PHP/Wordpress 代码是:
global $wpdb;
if ( $wpdb ) {
$wpdb->query( "SET GLOBAL max_allowed_packet=16777216" );
}