SeedProd Documentation

Documentation, Reference Materials, and Tutorials for SeedProd

Cannot Save Changes in SeedProd

If you see the message “Something has prevented the page from being saved” when trying to save in the SeedProd editor, a server-side error is blocking the save request. The fastest way to diagnose the issue is to check the browser console for an error code, then follow the resolution steps for that specific error below.


Step 1: Find the Error Code in the Browser Console

  1. With the SeedProd editor open, right-click anywhere on the page and select Inspect.
  2. In the developer tools panel that opens, click the Console tab.
  3. Attempt to save your page again. Any error messages will appear in the Console immediately after the save fails.
  4. Note the error code displayed (typically a three-digit number such as 403, 422, or 500) and follow the relevant steps below.

403 Error — Security Plugin or Firewall Blocking the Save

A 403 error means the save request is being blocked by a security plugin or server-side firewall. The plugin or firewall is treating the save request as a potential threat and rejecting it before it reaches WordPress.

To resolve this:

  • If you are using Wordfence, refer to the dedicated article: Settings Cannot Be Saved Due to Wordfence’s Firewall.
  • For other security plugins, check the plugin’s firewall or rate-limiting settings and whitelist SeedProd’s save requests, or temporarily disable the plugin to confirm it is the cause.
  • If no security plugin is active, contact your hosting provider and ask them to review the server firewall rules for your site.

422 Error — Object Cache Limit Exceeded

A 422 error is typically caused by Object Caching on the server. When the page content is large enough to exceed the object cache size limit, the server rejects the save request.

To resolve this: Contact your hosting provider and ask them to disable Object Caching for your site, then attempt to save again. If the save succeeds with Object Caching disabled, ask your host whether the cache size limit can be increased as a longer-term solution.


500 Error — Server Error (Memory or Plugin Conflict)

A 500 error indicates a server-side failure, most commonly caused by insufficient PHP memory or a conflict with another plugin or theme.

To resolve this, try the following steps in order:

  1. Increase your PHP memory limit. Follow the WPBeginner guide: How to Fix the WordPress Memory Exhausted Error.
  2. Check the PHP error log. Contact your hosting provider and ask for the PHP error logs from the server. The log will identify the specific function or plugin causing the 500 error.
  3. Test for plugin conflicts. Temporarily deactivate all plugins except SeedProd and attempt to save. If the save succeeds, reactivate your other plugins one at a time until the error returns — the last plugin reactivated is the likely cause.
  4. Test for theme conflicts. If deactivating plugins does not resolve the issue, temporarily switch to a default WordPress theme (such as Twenty Twenty-Four) and attempt to save again.

Contacting Support

If you are unable to resolve the issue using the steps above, contact the SeedProd support team. When submitting your request, include the following to help speed up the diagnosis:

  • The error code shown in the browser console
  • A copy of your PHP error log (available from your hosting provider)
  • A list of your active plugins and your current theme
  • Your WordPress version and PHP version

Save errors in SeedProd are almost always caused by a server configuration issue rather than a problem with SeedProd itself. Identifying the error code in the browser console is the fastest way to narrow down the cause and get your editor saving again.

Related Articles