Skip to content

Commit 65c330e

Browse files
authored
Merge pull request #664 from humanmade/backport-661-to-v24-branch
[Backport v24-branch] Fix broken links and formatting.
2 parents 0ea93b4 + de2ad97 commit 65c330e

25 files changed

+165
-103
lines changed

other-docs/faq/Account/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
# Account FAQs
2+
3+
Awaiting content

other-docs/faq/Account/data-storage-locality.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22

33
Your data is distributed among our technology stack. You can find information about the locality of each service as follows.
44

5-
You can find information about [Database Servers (MySQL)](https://docs.altis-dxp.com/cloud/database/) for content, [S3 Storage](https://docs.altis-dxp.com/cloud/s3-storage/) for assets, and [Backups](https://docs.altis-dxp.com/cloud/backups/) in the documentation.
5+
You can find information about [Database Servers (MySQL)](docs://cloud/database/) for
6+
content, [S3 Storage](docs://cloud/s3-storage/) for assets, and [Backups](docs://cloud/backups/) in the documentation.
67

7-
Information about your [Origin Location](https://docs.altis-dxp.com/cloud/origin-locations/) can be found within the Altis Dashboard; at the top of each environment's details pages, you can find the Region you're located within. All customer data is stored within this region, and is stored in durable, persistent storage across multiple [availability zones](https://docs.altis-dxp.com/cloud/architecture/) (data centres).
8+
Information about your [Origin Location](docs://cloud/origin-locations/) can be found within the Altis Dashboard; at the top of
9+
each environment's details pages, you can find the Region you're located within. All customer data is stored within this region, and
10+
is stored in durable, persistent storage across multiple [availability zones](https://docs.altis-dxp.com/cloud/architecture/) (data
11+
centres).
812

913
All your data is stored isolated from others, with fully dedicated infrastructure for each customer.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
# Common Errors and Issues
2+
3+
Awaiting content
Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Can't deploy due to build size
1+
# Can't deploy due to build size
22

33
If your deployment is throwing an error and failing with the message:
44

@@ -13,18 +13,20 @@ You can look at the following areas to reduce build size:
1313

1414
- Add `--prefer-dist` to the composer install command
1515
- If you are building JS / CSS assets with tools installed via npm or yarn ensure you're removing `node_modules` afterwards.
16-
- Once the above is done, ensure you clear the build cache in the Altis Dashboard before re-trying the deployment (contact support to clear the build cache)
16+
- Once the above is done, ensure you clear the build cache in the Altis Dashboard before re-trying the deployment (contact support
17+
to clear the build cache)
1718

19+
In some cases, a large file may have been committed to your repository and is being deploy; so check your code repository for large
20+
files.
1821

19-
In some cases, a large file may have been committed to your repository and is being deploy; so check your code repository for large files.
20-
21-
It can also be the case that your Node modules directory has inflated the build size. These help with build speed, but are not required to be deployed onto your environments and can be safely trimmed as part of your build-script.
22+
It can also be the case that your Node modules directory has inflated the build size. These help with build speed, but are not
23+
required to be deployed onto your environments and can be safely trimmed as part of your build-script.
2224

2325
To remove your Node modules directory via your build-script, you can add something like:
2426

25-
```
27+
```bash
2628
# Clean up node_modules to reduce the size of the build
2729
find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
2830
```
2931

30-
You can read more about build script limitations in this article: https://docs.altis-dxp.com/cloud/build-scripts/#limits
32+
You can read more about build script limitations in [this article](docs://cloud/build-scripts/#limits).
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# I click deploy, but nothing is happening
1+
# I click deploy, but nothing is happening
22

3-
If you're trying to initiate a deployment, but clicking deploy in the Altis Dashboard is not initiating a deploy, the deploy locks are still engaged.
3+
If you're trying to initiate a deployment, but clicking deploy in the Altis Dashboard is not initiating a deploy, the deploy locks
4+
are still engaged.
45

5-
First ensure another deployment wasn't initiated by another member of the team, or by the Altis Cloud auto-deploy bot. If no other deploy is in-progress, it's possible the deploy locks are stuck.
6+
First ensure another deployment wasn't initiated by another member of the team, or by the Altis Cloud auto-deploy bot. If no other
7+
deploy is in-progress, it's possible the deploy locks are stuck.
68

7-
[Contact us](https://dashboard.altis-dxp.com/support/) so we can manually release deploy locks for you.
9+
[Contact us](support://new) so we can manually release deploy locks for you.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# Image parsing errors
22

3+
Awaiting content
Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# ElasticSearch Index: Error: An index is already occurring. Try again later.
1+
# ElasticSearch Index: Error: An index is already occurring. Try again later.
22

3-
If you receive the error `ElasticSearch Index: Error: An index is already occurring. Try again later. ` when performing an ElasticSearch reindex, it's possible the indexing flag for an in-progress index has got stuck. The resulting error will occur:
3+
If you receive the error `ElasticSearch Index: Error: An index is already occurring. Try again later. ` when performing an
4+
ElasticSearch reindex, it's possible the indexing flag for an in-progress index has got stuck. The resulting error will occur:
45

56
```
67
Error: An index is already occurring. Try again later.
@@ -12,18 +13,20 @@ In such a case, you can clear the flag by running the following:
1213
wp elasticpress clear-sync
1314
```
1415

15-
Alternatively, if the above doesn't resolve the issue, it can also be stuck
16-
in a [WordPress pransient](https://developer.wordpress.org/apis/transients/). If so, you can try the following:
16+
Alternatively, if the above doesn't resolve the issue, it can also be stuck
17+
in a [WordPress transient](https://developer.wordpress.org/apis/transients/). If so, you can try the following:
1718

1819
```
1920
wp transient delete ep_wpcli_sync --network
2021
```
2122

22-
Occasionally this value can also be stored in the object cache. Flushing the object cache should be performed with caution when working on live environments.
23-
You can flush your object cache via a new CLI Session, see: https://docs.altis-dxp.com/cloud/dashboard/cli/ and run the following:
23+
Occasionally this value can also be stored in the object cache. Flushing the object cache should be performed with caution when
24+
working on live environments. You can flush your object cache via a [new CLI Session](docs://cloud/dashboard/cli/). Run the
25+
following:
2426

25-
```
27+
```bash
2628
wp cache flush
2729
```
2830

29-
**Note that flushing the object cache can have a significant impact on performance, so we recommend you only do this when necessary.**
31+
**Note that flushing the object cache can have a significant impact on performance, so we recommend you only do this when necessary.
32+
**

other-docs/faq/Common-Errors-and-Issues/integrity-check.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,10 @@ Using timestamps for the versions should be OK, but it's possible that this may
3535
Altis. Because there are multiple servers serving your files, the timestamps for each file could mismatch; this shouldn't normally
3636
cause an issue.
3737

38-
Our advice is to generate the version string within the build process:
39-
https://docs.altis-dxp.com/cloud/static-file-caching/
38+
Our advice is to [generate the version string within the build process](docs://cloud/static-file-caching/).
4039

41-
Read more about integrity checking:
40+
Read more about integrity checking: with Altis [Subresource Integrity](docs://security/browser/#subresource-integrity) and on
41+
MDN: https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity
4242

43-
https://docs.altis-dxp.com/security/browser/#subresource-integrity
43+
Further steps on [debugging](docs://guides/getting-help-with-altis/debugging/)
4444

45-
https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity
46-
47-
Further steps on debugging:
48-
49-
https://docs.altis-dxp.com/guides/getting-help-with-altis/debugging/
Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
# Node modules not updated after deployment
1+
# Node modules not updated after deployment
22

3-
Node modules are cached on the build server for faster deployments. It can be the case that your updates to Node modules, or Node versions themselves are not updated after a deployment.
3+
Node modules are cached on the build server for faster deployments. It can be the case that your updates to Node modules, or Node
4+
versions themselves are not updated after a deployment.
45

5-
In this case, you must clear your build cache and redeploy.
6+
In this case, you must clear your build cache and redeploy.
67

7-
To do this, goto the Altis Dashboard release tab, click "advanced" on the deploy menu, and select 'Clear Build Cache'; Then Select "Force Rebuild". This will now rebuild your deployment package, and ensure the proper Node version and Node modules are pulled in as per your build script.
8+
To do this, goto the Altis Dashboard release tab, click "advanced" on the deploy menu, and select 'Clear Build Cache'; Then Select "
9+
Force Rebuild". This will now rebuild your deployment package, and ensure the proper Node version and Node modules are pulled in as
10+
per your build script.
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
# My Altis SSL Certificate Common Name uses my Altis domain, and not my main site domain?
1+
# My Altis SSL Certificate Common Name uses my Altis domain, and not my main site domain?
22

3-
This is the standard configuration for Altis. The CN uses the "primary" domain name, which is one controlled by Altis; when domains are added or removed via the Altis Dashboard's domains feature, we then add or remove them from the SAN list and replace the certificates. This should have no impact on your environment's or SEO, as support for SANs is widespread.
3+
This is the standard configuration for Altis. The CDN uses the "primary" domain name, which is one controlled by Altis; when domains
4+
are added or removed via the Altis Dashboard's domains feature, we then add or remove them from the SAN list and replace the
5+
certificates. This should have no impact on your environment's or SEO, as support for SANs is widespread.

0 commit comments

Comments
 (0)