- Issue created by @AnkitKumar_0909
- 🇮🇳India AnkitKumar_0909
My issue got resolved after searching,
Step 1.
first of all for debugging these errors we will add this line in setting.php file$config['system.logging']['error_level'] = 'verbose';
In this type of problem mostly the error occurs "I have received packet bigger than 'max_allowed_packet'" error" or similar so simply
Step 2.
you just do one things go to your drupal database and run this querySET GLOBAL max_allowed_packet = 1024 * 1024 * 256; By the way your drupal will be running from this step only otherwise
Step 3.(optional)
Afterwards, add this setting to my.cnf under the [mysqld] section:[mysqld]
max_allowed_packet = 256MThanks
- Status changed to Closed: outdated
over 1 year ago 3:57pm 7 March 2023 Setting
max_allowed_packet
is a well-known and documented platform requirement for Drupal.