Skip to content

billys41/wordpress-on-replit

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 

Repository files navigation

Run WordPress on Repl.it

Install WordPress and wp-cli on Repl.it via SQLite

How

  1. Create a new Repl.it as a PHP Web Server
  2. In the console, run this script:
    wget -O - https://raw.githubusercontent.com/ethanpil/wordpress-on-replit/master/wordpress-on-replit.sh | bash
  3. Install your WordPress site and work!

Caveats:

  • WordPress is running on a local SQLite file. Not performant. Great for testing and hacking.
  • WP-CLI is very hacky but works. You can execute it from the base wordpress directory with ./wp as repl.it currently has no way to set PATH in a reliable way.
  • Subject to all of the limitations of the SQLite plugin

Notes:

You can remove wp-cli by deleting wordpress/wp and ~/php/wp-cli.phar and ~/usr

How It Works

Overview

Repl.it does not have MySQL available for PHP Web Server repls, but even more surprisingly, the SQLite extension is also not included. We also have quite a few limitations. The shell is quite hardened, and we cannot install packages or even modify the path. PHP code that is available via the public port is served by PHP's Command Line Web Server and passed through to port 80 via the repl's public URL.

Getting the PHP Modules loaded

Luckily, we know that Repl.it runs Ubuntu as the base image for all languages. What we have to do is download the correct PHP modules for Ubuntu and then get PHP to load them at runtime. Fortunately, Repl.it also allows us to define a custom run command where we can force PHP start the Command Line Web Server but using our customized php.ini file which loads the modules.

Getting WP-CLI working

Since WP-CLI does not use the run command, but is actually run at the command line, we cannot expect the modules to be available for it. Addtionally, we cannot simply alter the PATH variable in Bash to make an easy alias. What finally worked was creating a simple Bash script as wordpress/wp which loads the path and then forces php to run the WP-CLI phar file with a custom php.ini as defined in ~/php/php.ini and viola! It's hacky and barely works. I'm sure lots of functions don't, and it has not been fully tested. Some examples that worked:

  • ./wp plugin install disable-comments
  • ./wp plugin activate disable-comments

Paths

The php modules are downloaded to ~/php and the .ini file is created there as well WP-CLI requires less which for some reason is also not included in the base image, so that is downloaded and installed into ~/usr/bin

Thanks & Credits

About

Install WordPress on Repl.it with SQLite

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%