@saip1540
Can you please provide any error logs being generated when this internal error is happening so that we can help you out?
Your site appears to be on GoDaddy, here are some steps you can follow to find the error logs:
- Log into your GoDaddy account.
- Click on “Web Hosting.”
- Next to the hosting account you want to use, click “Manage.”
- In the “Stats & Monitors” section, click “Error Logs.”
If that does not work, you can enable debug logging in WordPress, by adding the following in wp-config.php
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors', 0);
This will start generating the error logs at wp-content/debug.log
About your second query, yes, you can upload the images directly into your WordPress’ uploads folder and then use a plugin to import those images into your media library. However, this may not solve your “Internal Server Error” issue, which is likely due to some other underlying problem.
-
This reply was modified 1 year, 6 months ago by Gagan Deep Singh. Reason: Added where the debug.log file would be