I was saving form submissions to a custom database and it worked for a couple of weeks. The past week or so it stopped saving new entries. I tried disabling and enabling the database toggles, I cleared the script cache, I turned on WP Debug (no errors), I wrote a hook to write any errors to a file and it is returning success, I tried switching from a custom database to a wordpress database as well (The table and fields were created before attempting to save). I’m at a loss on what the issue could be.
Please let me know if there are any thoughts on what the issue could be.
Solved! I modified Processor.php to print out the data attempted to be put into my table. I mistakingly put the user agent (browser info, etc) instead of user display name in a varchar table with a length of 60, too small for the user agent var. Back in business.