Skip to content

Commit

Permalink
Fix wordpress-on-lamp.md issue with curl out of order (rocky-linu…
Browse files Browse the repository at this point in the history
…x#2568)

* a couple of other minor fixes
  • Loading branch information
sspencerwire authored Jan 9, 2025
1 parent 9eb0ec4 commit b815184
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/guides/cms/wordpress-on-lamp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -172,7 +172,7 @@ Flush privileges to ensure the application of changes:
FLUSH PRIVILEGES;
```

Exit the MySQL CLI:
Exit the MySQL cli:

```bash
EXIT;
Expand Down

0 comments on commit b815184

Please sign in to comment.