Skip to content

Commit 9ac0c28

Browse files
committed
Final README edits + Wordpress version specification as a temporary workaround for a Wordpress bug
1 parent b388b82 commit 9ac0c28

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

appengine/wordpress/README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ working WordPress project for the
1313
* Enable Billing on that project
1414
* [Enable Cloud SQL API][cloud-sql-api-enable]
1515
* Install [Google Cloud SDK][gcloud-sdk]
16-
* [Install mysql-client][mysql-client]
16+
* Install the [mysql-client][mysql-client] command line tool
1717
* [Install Memcache][memcache-installation]
1818

1919
## Project preparation
@@ -31,7 +31,7 @@ $ gcloud app create
3131
```
3232

3333
Then configure the App Engine default GCS bucket for later use. The default App
34-
Engine bucket looks like YOUR_PROJECT_ID.appspot.com. Change the default Access
34+
Engine bucket is named YOUR_PROJECT_ID.appspot.com. Change the default Access
3535
Control List (ACL) of that bucket as follows:
3636

3737
```
@@ -59,9 +59,8 @@ $ gcloud sql users set-password root % \
5959
--instance wp --password=YOUR_INSTANCE_ROOT_PASSWORD # Don't use this password!
6060
```
6161

62-
To access this MySQL instance, use Cloud SQL Proxy.
63-
Download an appropriate binary from
64-
[the download page][cloud-sql-proxy-download] and make it executable.
62+
To access this MySQL instance, use Cloud SQL Proxy. [Download][cloud-sql-proxy-download]
63+
it to your local computer and make it executable.
6564

6665
If you haven’t created a service account for the project,
6766
create it on [the Credentials section][credentials-section] in the
@@ -79,8 +78,8 @@ $ cloud_sql_proxy \
7978
-credential_file=PATH_TO_YOUR_SERVICE_ACCOUNT_JSON_FILE
8079
```
8180

82-
Now you can access the Cloud SQL instance with the MySQL client. Create a new
83-
database and a user as follows:
81+
Now you can access the Cloud SQL instance with the MySQL client in a separate
82+
command line tab. Create a new database and a user as follows:
8483

8584
```
8685
$ mysql -h 127.0.0.1 -u root -p

appengine/wordpress/src/WordPressSetup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class WordPressSetup extends Command
2929
{
3030
const DEFAULT_DIR = 'my-wordpress-project';
3131
const DEFAULT_ERROR = 1;
32-
const LATEST_WP = 'https://wordpress.org/latest.tar.gz';
32+
const LATEST_WP = 'https://wordpress.org/4.8.1.tar.gz';
3333
const LATEST_BATCACHE =
3434
'https://downloads.wordpress.org/plugin/batcache.1.4.zip';
3535
const LATEST_MEMCACHED =

0 commit comments

Comments
 (0)