Cookies ahead

Our support chat tool "Intercom" would like to collect some more data on you. See the related link for more details.

Docs

WordPress quick setup guide

Reviewedbyfl

Markdown ↓

Download and install WordPress on fortrabbit. Use SSH to deploy WordPress files directly to your environment.

We assume you've already created an app and chose WordPress in the software template. In the following, you will install WordPress directly on your environment via SSH. We do not recommend using git deployment for WordPress, as it requires dynamic file uploads and database configuration that are not suited to code-only deployment workflows.

Install WordPress

To install WordPress, log in to your environment via SSH and download the latest version directly from the official WordPress repository. Run the following commands in sequence to extract and deploy WordPress to your app:

# 1. Login to your environment via SSH
$ ssh {{app-env-id}}@ssh.{{region}}.frbit.app

# Once you are logged in:

# 2. Download latest WordPress
$ wget https://wordpress.org/latest.tar.gz

# 3. Unpack wordpress
$ tar zxf latest.tar.gz

# 4. Move unpacked files to top level
$ mv wordpress/* .

# 5. Remove the downloaded container
$ rm -r wordpress latest.tar.gz
shell

Run the installer

Once the files are in place, visit your environment's test domain to run the installer:

Complete the guided web installation to finish the setup. The WordPress installer will ask you for database credentials, which you can find in the dashboard under your environment settings, along with your site's title, admin username, password, and email. After the guided setup completes, you will be redirected to the WordPress admin login form where you can use your chosen credentials to log in.

Installing themes and plugins

After WordPress is running, you can manage themes and plugins through the WordPress admin dashboard. You can download and install themes and plugins directly from the WordPress marketplace within wp-admin, or upload custom themes and plugins to your app's /wp-content/ folder via SFTP or SSH.

Written by a human. Review, grammar checks and typo fixes by AI.

AI use & editorial processEdit on GitHub ↗