Warning: “Too many items to send due to your server limitation. Trimmed items: X”
This message is a warning notice - not an error. It appears when the amount of data being sent to our remote server exceeds your PHP post_max_size limit.
The post_max_size setting controls how much data your server can send in a single request, similar to a file upload size limit. When your scan results exceed this value, the plugin automatically trims the data to fit within your server’s allowed size.
The scan continues successfully, but not all items are sent for remote analysis. This ensures stability and prevents interruptions.

How to Fix (optional)
- No action required - the scan completes successfully even if some items were trimmed.
- Increase your PHP post size limit
- You can raise the upload and post size limits in a few different ways:
From WordPress (recommended for most users):
You can increase the upload and post size limits directly from WordPress by editing the
wp-config.phpfile in your site’s root directory.Access it via your hosting panel or FTP, then add the following line before the line that says “That’s all, stop editing! Happy publishing.”:
@ini_set( 'upload_max_size', '256M' );
- Save the file, then refresh your browser. This adjustment helps WordPress handle larger upload and request sizes, which also affects how much data the plugin can send in one scan.
From your hosting control panel or php.ini file:
If you have access to your hosting’s PHP configuration (for example, in cPanel or Plesk), look for the option to change
post_max_size.You can also edit it manually by opening your
php.inifile and adding or modifying the line:
post_max_size = 32M
- Increasing this value (for example to 32M or 64M) allows larger scans to be sent completely.
Ask your hosting provider:
If you’re not sure how to do it, simply contact your hosting support and ask them to increase your PHP
post_max_sizeandupload_max_sizelimits to at least 32M or 64M.Restart the scan
After saving your changes, start a new scan - the plugin will then send all items if your new limit allows it.