Deze plugin is niet getest met de laatste drie grote versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Er kunnen ook compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

BE Media from Production

Beschrijving

When spinning up a staging or local development environment, you might not need the full uploads directory, but you also don’t want to see broken images throughout the site.

This plugin lets you use the production server for missing media. Define the production URL using a wp-config.php constant BE_MEDIA_FROM_PRODUCTION_URL or filter be_media_from_production_url.

In all cases, if a local file exists, it will be used in preference to the remote file.

Installatie

Once the plugin is installed, add the following constant to wp-config.php with your production URL.

define( 'BE_MEDIA_FROM_PRODUCTION_URL', 'https://www.billerickson.net' );

Alternatively, you can use the filter in a Code Snippets plugin or a mu-plugin:

add_filter( 'be_media_from_production_url', function() {
    return 'https://www.billerickson.net';
});

Installation via WP-CLI and constants

wp plugin install --activate be-media-from-production
wp config set BE_MEDIA_FROM_PRODUCTION_URL https://www.billerickson.net --type=constant

Using with WP Migrate

WP Migrate is my preferred tool for pushing/pulling databases between environments. The media files functionality allows you to transfer media between environments along with the database.

When redesigning a website, I keep all the media on my development server and push up new media uploads along with the database.

Set up a “push” profile to push your local database to the development server. Make sure “Media Files” is checked and select “Compare, then upload”.

Set up a “pull” profile to pull the development database locally. Do not include media in your pull. Any missing media will be handled by BE Media from Production.

Beoordelingen

26 juni 2024
I absolutely love this plugin. I install it on every local website I work on. It’s so helpful to develop locally without downloading all of my client’s media uploads. Some of my clients have hundreds of gigabytes. I can’t work without it now. Thank you for sharing it!
8 november 2022
I’ve used this plugin from Github for maybe 7 years now. It’s nice to finally see it in the Wordpress plugin directory This is a must use on my local
2 november 2022
Exceptionally clean plugin with an intuitive and developer-friendly setup that can easily be included through your site’s wp-config.php file or with a wp-cli command like, wp config set BE_MEDIA_FROM_PRODUCTION_URL 'your-prod-website-url'. No more setting up confusing apache redirect rules in htaccess or jumping into nginx configuration files.
1 oktober 2020
Incredibly useful plugin when doing local development work on sites with huge media libraries, when you don’t want to fill up your local hard drive with or spend time syncing with your remote site.
18 september 2020
This plugin works. It makes getting a WP install up and running easy – without having to download a client’s 10GB+ uploads folder. So nice! Thanks!
21 juni 2020
Just a really great complement to localhost development, especially since pretty much every backup/export utility allows excluding certain directories, like wp-content/uploads Many thanks!
Lees alle 9 beoordelingen

Bijdragers & ontwikkelaars

“BE Media from Production” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “BE Media from Production” naar jouw taal.

Interesse in de ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.