From b81518493e932577e98729ffbfef7541f6b22ea7 Mon Sep 17 00:00:00 2001 From: sspencerwire Date: Thu, 9 Jan 2025 08:07:37 -0600 Subject: [PATCH] Fix `wordpress-on-lamp.md` issue with `curl` out of order (#2568) * a couple of other minor fixes --- docs/guides/cms/wordpress-on-lamp.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/guides/cms/wordpress-on-lamp.md b/docs/guides/cms/wordpress-on-lamp.md index e2e24b666..a70a70a05 100755 --- a/docs/guides/cms/wordpress-on-lamp.md +++ b/docs/guides/cms/wordpress-on-lamp.md @@ -96,15 +96,15 @@ After installing PHP, you must reload Apache to install it as an Apache module a sudo systemctl restart httpd ``` -Use `curl` to download the latest version of WordPress: - ## Fetch and unpack WordPress +Use `curl` do download the latest version of WordPress: + ```bash curl -O https://wordpress.org/latest.tar.gz ``` -User `tar` to extract the downloaded archive: +Use `tar` to extract the downloaded archive: ```bash tar -xzvf latest.tar.gz @@ -132,7 +132,7 @@ Set permissions for the WordPress files: sudo chmod -R 755 /var/www/html/ ``` -Login to the MySQL CLI: +Login to the MySQL cli: ## Configure database @@ -172,7 +172,7 @@ Flush privileges to ensure the application of changes: FLUSH PRIVILEGES; ``` -Exit the MySQL CLI: +Exit the MySQL cli: ```bash EXIT;