How to Serve WordPress Assets using Vultr Object Storage

Updated on June 23, 2024
How to Serve WordPress Assets using Vultr Object Storage header image

Introduction

WordPress site speed is a very important factor when making improvements to your general user experience and search engine discovery rankings. Among the critical factors that make up your general site speed, WordPress asset delivery takes a top spot with a guarantee on how fast users download images, logos, videos, and other files on the website.

By leveraging S3 compatible storage such as Vultr Object Storage, file bandwidth requirements are offloaded from your server and shifted to your buckets. With this functionality, WordPress database calls are quicker, and any local files are delivered to the user faster while lazy loading external assets from your object storage.

Advantages of using S3 Compatible Storage for WordPress Assets Delivery

  • Improved site speed speeds and user experience.
  • Improved Caching with S3 compatible plugins such as W3 Total Cache,WP Super Cache, among others.
  • Faster file delivery, in case of downloads, files are downloaded directly from the Vultr Object Storage instead of your WordPress server.
  • Distributed bandwidth, making it faster to scale your WordPress site in cases of high traffic, and improve server response times.
  • Improved backup and recovery options in case of site crashes.
  • Faster file uploads as files are transferred to Object Storage instead of the WordPress server that usually performs directory structuring operations.
  • Direct file sharing. By default, WordPress serves assets with a wp-content/XX/file prefix. When using Object Storage, you can share direct links to a file with a clear file extension on the URL like https://xx.vultrobjects.com/wordpress-media/2023/07/media_card_1200x630.png.

This article explains how to serve WordPress Assets using Vultr Object Storage. You will upload media files using the WordPress library directly to the Object Storage Bucket without saving a copy of the files on the actual server to save space.

Prerequisites

Before you begin:

Set up Vultr Object Storage

  1. Log in to the Vultr customer portal.

  2. On the Products page, navigate to the Storage-Block/Object page.

  3. Navigate to Object Storage, and click your object storage instance to manage it.

  4. On the Instance management page, find the S3 Credentials section, copy the Hostname,Secret Key, and Access Key to a secure location on your computer.

    Vultr Object Storage Credentials

  5. Navigate to Buckets, and click Create Bucket to set up a storage container for your files.

  6. In the Create Bucket pop-up, enter a name for your bucket. For example wordpress-media”.

    Create Vultr Object Storage Bucket

  7. When created, click the new bucket to access the file manager, and verify that no file exists.

Configure WordPress to use Object Storage

To use Object Storage, WordPress requires a compatible plugin that handles the upload, and file transfer process. When integrated with Vultr Object Storage, WordPress uploads all new media files to the destination bucket, also old media files are offloaded from the server if you integrate premium plugin versions. In this section, use the Media Cloud plugin and configure WordPress to use your Vultr Object Storage bucket as described below.

  1. In a web browser, such as Firefox, Log in to your WordPress administrator dashboard.

     https://example.com/wp-admin

    Log in as an administrative user with full privileges to the website.

  2. On the main navigation menu, navigate to Plugins, and click Add New.

  3. Enter Media Cloud in the Search Plugins field, and press enter to start a new search.

  4. In the search results, find the Media Cloud plugin, and click the Install Now button to add it to your WordPress site.

    Install the Media Cloud WordPress plugin

  5. Click Activate to enable the plugin.

  6. When activated, you are redirected to the Media Cloud setup page. Click Skip to disable product email notifications.

  7. On the Welcome to Media Cloud splash screen, click Next to select your S3 storage provider.

  8. Click S3 Compatible to open the setup page.

  9. Click Next to navigate to the Cloud Storage Settings page.

  10. Enter your Vultr Object Storage Access Key, and Secret Key in the respective fields.

  11. Enter the Bucket name you created earlier, and keep the Region setting to Automatic.

    Configure Media Cloud to use Vultr Object Storage

  12. In the Public Endpoint field, fill in your Vultr Object Storage Hostname.

  13. Click Next to verify your connection details and test that your WordPress site can write to your Vultr Object Storage bucket.

  14. Click Start Tests, and verify that all results are successful.

    Vultr Object Storage Connection to WordPress results

  15. Click Next to save changes and complete the setup process.

  16. Click Finish & Exit Wizard to close the configuration wizard and redirect to the main plugin dashboard.

  17. Within the Cloud Storage section, verify that the Enable Cloud Storage button is set to ON.

  18. Click the Quick Jump options, and navigate to the Deleting Files section.

  19. Toggle the Delete Uploaded Files button to ON. This enables the auto-deletion of all uploaded files from your WordPress server and stores them to your Vultr Object Storage bucket.

    Delete Local WordPress Files on upload

  20. Keep the rest of the file deletion options turned OFF, and click Save Changes to apply your new settings.

Test and Serve WordPress Assets using Vultr Object Storage

To test that your WordPress Assets correctly transfer to your Vultr Object Storage bucket. Upload new media files to the library, and verify that the file storage path is external, and no files are stored on the server as described in this section.

  1. On the main WordPress navigation menu, click Media to open the Media Library.

  2. Click Add New to reveal the file uploads helper.

  3. Click Select Files to browse files from your computer and upload them to your WordPress site.

  4. Monitor your file upload progress, and verify that it completes successfully.

  5. When your file is added to the WordPress media library, click to open the file attachment details, and verify the File URL is set to your Vultr Object Storage path, and the Bucket field correctly points to your target bucket.

    WordPress files uploaded to a Vultr Object Storage Bucket

  6. Add the file to your WordPress pages or blog post, and verify that site visitors can access the files by previewing your pages.

  7. Upload more files to your Object Storage bucket through the media library and start using them on your website.

  8. To verify that all new WordPress files are added to your target bucket. Access your Vultr Object Storage dashboard, navigate to buckets, and check that new data is added to the wordpress-media bucket you created earlier.

    WordPress Files in a Vultr Object Storage Bucket

Continuously uploading files to your Object Storage bucket will free your WordPress server space and improve the general site speed.

Troubleshooting

When configuring WordPress to use Object Storage, you may encounter errors based on your server configurations. Below are fixes to the most common errors:

  • Error transferring images from WordPress to Object Storage.

    Verify that you applied the correct Vultr Object Storage values in your Media Cloud settings. To update your Object Storage details, navigate to Media Cloud > Cloud Storage > Provider Settings.

    Verify that the target Object Storage bucket exists. Your Object Storage could be running without an existing bucket, the Media Cloud plugin does not create any buckets apart from adding WordPress files to an existing file container.

    Check your WordPress firewall rules (if any), and verify that the Media Cloud plugin has full access to the website. When using a plugin like Wordfence, whitelist the plugin actions to enable all file transfers to your Object Storage bucket.

  • Media Cloud error: There was a problem with your settings. Please double check entries for potential mistakes.”

    Check your Vultr Object Storage values, and make sure the access key, secret key, and hostname details are the same as those displayed in your Vultr Object Storage instance dashboard.

  • 503 Service Unavailable:

    Check your web server logs to know the source of the error. Usually, the /var/log/ directory stores most application error logs.

    Verify that your WordPress server has enough runtime resources. If you are storing images on both the Object Storage bucket, and the WordPress server, migrate all images to Object Storage to free space on your server.

Conclusion

You have configured WordPress to serve external assets using Vultr Object Storage. By serving assets from an external location, server resources are redirected to other services such as Database calls, and script handling which improves your general WordPress site response time.

Next Steps

Visit the following resources to further improve your WordPress site performance and maximize the CMS capabilities. You can enable more services such as caching, perform regular backups, and enhance site security to fine tune your production WordPress server depending on your needs.