Hello,
To understand the issue, we need to find out why the generation of SKU is stopping. Does it always stop at 58%? Could you please take a screenshot of your settings?
Firstly, let’s see what’s happening in DevTools on the “console” tab when the SKU creation process comes to a halt. Secondly, enable the debug mode in WordPress and check the logs after the error occurs.
Debug Mode Activation Steps (excluding on-screen output, directing logs to files):
- Access your WordPress installation directory.
- Look for the wp-config.php file.
- Open the file in a text editor.
- Search for the line that says define(‘WP_DEBUG’, false);.
- Change false to true, like this: define(‘WP_DEBUG’, true);.
- Right below that line, add the following lines to specify where the logs should be stored:
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
7. Save the wp-config.php file.
Now, when you trigger the process that generates SKUs and encounter the error, WordPress will log the debug information in a file instead of displaying it on the screen. You can find the log file in the wp-content directory with a name like debug.log.
This log file will provide more detailed information about what’s going wrong during the SKU creation process, helping you pinpoint the issue more effectively.
Also, try activating the “Duplicate SKUs” option. It’s possible that under certain circumstances, duplicate SKUs are being created. Let’s test this as well.