Hello @nitrospectide,
A 500 Internal Server Error is a generic message, which means your server encountered an unexpected condition that prevented it from completing the request. To identify the exact cause behind this—whether it is a server configuration, a conflict, or a timeout issue—we need to look at your WordPress debug logs.
Could you please share the debug log from the period when you attempted to configure the connection? This will provide the specific error details we need to investigate further.
To capture this, please follow these steps to enable debugging on your site:
- Access your site files: Open your
wp-config.php file located in the root of your WordPress installation.
- Locate the debug line: Find the line that says
define('WP_DEBUG', false);.
- Enable Debugging: Change that value to
true.
- Log the errors: Add the following line directly below it:
define('WP_DEBUG_LOG', true);.
- Save your changes: Once saved, the configuration should look like this:
define('WP_DEBUG', true); define('WP_DEBUG_LOG', true);
Once this is enabled, please attempt the connection process again. WordPress will then record the error in a file located at /wp-content/debug.log. You can access this file via your hosting control panel’s File Manager or an FTP client.
Please copy and paste the relevant entries from that file here so I can analyze them for you.
Note: Please remember to disable debugging (change the values back to false) once we have resolved the issue, as this ensures your site remains secure and prevents the log file from growing unnecessarily large.
I’ll be standing by for your update. Let me know if you have any trouble finding the file, and we will take it from there!