Skip to content

Commit eda5f05

Browse files
authored
Merge pull request #193 from makeplane/add-demos
Added interactive demos and troubleshooting for Pages
2 parents 759807a + 2b36c04 commit eda5f05

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

docs/core-concepts/issues/issue-types.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ For example, your Marketing team may need an issue type called `Content` with th
2020

2121
Issue Types make these and infinite other use cases possible.
2222

23+
<div style={{ position: "relative", paddingBottom: "calc(56.67989417989418% + 41px)", height: "0", width: "100%" }}>
24+
<iframe src="https://demo.arcade.software/V1jNWxXip4waqo9CgkO3?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true" frameborder="0" loading="lazy" webkitallowfullscreen mozallowfullscreen allowfullscreen style={{ position: "absolute", top: "0", left: "0", width: "100%", height: "100%", colorScheme: "light"}} title="Set up your workspace">
25+
</iframe>
26+
</div>
27+
2328
## Create issue types
2429

2530
:::warning

docs/core-concepts/issues/time-tracking.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ Log time per issue, record time by members and guests per issue, and download co
2323

2424
Project members can easily log the time they spend working on specific issues directly within the issue details page. Each time entry can include details such as the amount of time spent and optional notes to provide context. Plane also offers comprehensive reports that aggregate time-tracking data across different projects helping managers analyze productivity and ensure successful project delivery.
2525

26+
<div style={{ position: "relative", paddingBottom: "calc(56.67989417989418% + 41px)", height: "0", width: "100%" }}>
27+
<iframe src="https://demo.arcade.software/avUgm2QhW68h6umzNFNT?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true" frameborder="0" loading="lazy" webkitallowfullscreen mozallowfullscreen allowfullscreen style={{ position: "absolute", top: "0", left: "0", width: "100%", height: "100%", colorScheme: "light"}} title="Set up your workspace">
28+
</iframe>
29+
</div>
30+
2631
## Enable Time Tracking
2732
To enable the Time Tracking feature on your project, follow the steps below:
2833

docs/core-concepts/pages/overview.mdx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,26 @@ When you export to PDF, your documents keep their formatting, making them easy t
122122
With Plane, you can publish Pages to the web, making them accessible to anyone with the link—no login required. This feature is perfect for sharing project updates, documentation, or any other information with external stakeholders. Published pages allow viewers to engage directly by leaving comments, providing an open channel for feedback without needing access to your workspace.
123123

124124
To publish a page, click the **Publish** button at the top right of your screen. You’ll receive a unique link to share the page.
125+
126+
## Troubleshooting
127+
128+
### Page content not visible
129+
130+
**Issue**
131+
Page content is not visible to Members, even when the page is set to public. While the page title appears, the content does not, and only the page creator can view it. In some cases, content is visible on certain pages but not others, making the issue inconsistent and unpredictable.
132+
133+
**Cause**
134+
When using an external reverse proxy, the necessary HTTP upgrade headers must be added to support WebSocket communication. The default configuration does not handle WebSocket connections correctly.
135+
136+
**Solution**
137+
To resolve this issue, enable WebSocket support by adding specific headers in your external proxy configuration file.
138+
139+
For example, if you are using NGINX, include the following settings:
140+
141+
```bash
142+
proxy_http_version 1.1;
143+
proxy_set_header Upgrade $http_upgrade;
144+
proxy_set_header Connection "upgrade";
145+
```
146+
147+
For more details on configuring an external reverse proxy for Plane and accessing different templates, refer to the [External reverse proxy](https://developers.plane.so/self-hosting/govern/reverse-proxy) guide.

0 commit comments

Comments
 (0)