vote up 0 vote down star

Whats the simplest way to update the paths of the images after migrating the website from local machine to a live server. Most of the times I end up updating the paths manually. I m convinced that there must be a simpler way which i m missing out on.

Kindly suggest.

flag

Define "image links". Theme images? ImageCache images? Uploaded images? There are lots of different components that display images in Drupal, and most of them should adapt fine to a server move as long as you update the site's URL in settings... – ceejayoz Jul 30 at 14:25
I think that there's likely something going wrong that you need to fix. I use a local server to test new modules before deploying them to a public website. I regularly update my local server with a fresh backup from the public website and the only times that any images break are when directory permissions are wrong in my local filesystem. – Bevan Aug 4 at 19:37
What URL is being used for the images that are failing to load? And what URL should those images have? Please give some examples. – Bevan Aug 4 at 19:38

2 Answers

vote up 1 vote down check

My guess is that the issue you're seeing is a result of not setting the filepath in the administration. If you go into the administration (admin/settings/file-system) and simply save the page, you'll define the value for the filepath (which should remove the issues).

You could also set all files to use the original default (or local) directory as well via that interface.

The issue, in case you're wondering, is that the variable_get call under the hood for the filepath is dynamic based on the sites directory that you're loading the settings.php file from. Once the value is set, it no longer resorts to the default setting and uses your value instead.

If you're physically moving the files from the relative location they're at locally vs on the server, then I'm not sure there's much of a great way around that issue.

link|flag
Ok .. thanks for the reply. However I have tried changing the path using the file system in the past without much success . Though the next time I copy a single site frm the multi-site setup i have on my local machine and configure it individually on the live server would certainly try nd check it again. THanks – Saurabh Aug 15 at 10:38
vote up 0 vote down

Actually I have a multi-site setup on local machine and a single site setup on the live server which is what leads to broken images on deployment. The easiest way to fix this is to update the file path on the server using a simple SQL query. UPDATE files SET filepath = REPLACE(filepath, 'old/path', 'new/path');

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.