Abhishek Singh
Abhishek Singh

Reputation: 509

After making wordpress files live, all images showing broken, even image exist in that path

I have been trying to resolve one issue regarding broken image in WordPress website. Things what I have covered or you need to know to find out this issue are:

  1. On localhost all images were fine
  2. Problem came when I uploaded all files over live server.
  3. I have updated all links into database using bunch of MySql scripts
  4. I played with permalinks too but that didn't work for me
  5. Website link is http://bukkl.in/ and I am using it as an Add-On Domain
  6. My root htaccess file's code is:
    
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

  1. I checked upload directory's permission. uploads folder has 755 permission and files inside this uploads folder has 644 permission.
  2. Images which are broken does really exist. For example: http://bukkl.in/wp-content/uploads/2017/04/SampleLogo.png
  3. WordPress 4.7.3 running Insperia theme.

Please suggest best possible solution for the same.

Upvotes: 1

Views: 262

Answers (1)

user7710952
user7710952

Reputation:

It could be a database problem where the images keep the localhost address.

Try duplicator plugIn:

Upvotes: 0

Related Questions