My host, Inmotion, quarantined my site a couple of weeks ago. I followed InMotion’s instructions on how to restore my site. However, while the site is back up, the content for the posts are missing, and so are all the photos for each post. I don’t know how to fix this. The title for each post shows up on the home page, but the photos are no longer there. And if I click on the post title to reach an article, I get this message:
“Error 404 – Not Found
The document you are looking for may have been removed or re-named. Please contact the web site owner for further assistance.”
How can I fix this?
Thanks for your help,
Kim
First, to fix your URLs, check your .htaccess file. Make sure it matches default WordPress rules. If you got anything there, for now, delete it and keep default rules.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Second, your images, I believe your images are there in your uploads folder. I can spotted one:
https://theharvestmagazine.com/wp-content/uploads/2017/08/Site-Identity-Picture-100×100.jpg
So the issue may be with code that you may have deleted when cleaning up your site.
Can you tell us the names of files you deleted or edited? This will help narrow down the issue.
If possible, get a clean copy of your theme files, delete old theme files and upload a fresh copy of your theme. This may fix image issues right away.
^V
]]>