Skip to content

Commit 05b3bdf

Browse files
committed
improved formatting, added new asset
1 parent 2697fc5 commit 05b3bdf

7 files changed

+20
-23
lines changed
139 KB
Loading
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"label": "Firebase Issues"
2+
"label": "Firebase Troubleshooting"
33
}

docs/troubleshooting/firebase-issues/client_access_to_firestore_expired.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You may receive an email from Firebase with the subject:
1111

1212
This message typically appears when your Firestore database is in **Test Mode** and the access duration has expired.
1313

14-
**Why Am I Seeing This Message?**
14+
Reason for This Message
1515

1616
When setting up Firestore for the first time, Firebase offers two rule options:
1717

docs/troubleshooting/firebase-issues/configuring_cors_for_firebase_storage.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,37 +28,37 @@ Follow these steps to configure CORS for your Firebase Storage bucket:
2828

2929
3. **Run the following Command:**
3030

31-
```js
31+
```jsx
3232
gcloud config set project <your-project-id>
3333
```
3434

3535
4. **Navigate to your Firebase Storage bucket:**
3636

37-
```js
37+
```jsx
3838
cd gs://<your-bucket-name>
3939
```
4040

4141
5. **Run the `cors` Command to Configure CORS:**
4242

43-
```js
43+
```jsx
4444
gsutil cors set cors.json gs://<your-bucket-name>
4545
```
4646

4747
You can also specify a list of allowed headers by running the following command:
4848

49-
```js
49+
```jsx
5050
gsutil cors set cors.json gs://<your-bucket-name> --allowed-headers="Content-Type, Authorization"
5151
```
5252

5353
The `cors.json` file contains a list of origins that are allowed to access your resources. Each origin is a string that identifies a domain or port. For example, the following origin allows access from the domain `www.example.com`:
5454

55-
```js
55+
```jsx
5656
"origins": ["https://www.example.com"]
5757
```
5858

5959
You can also specify a list of allowed headers. The following example allows access to the `Content-Type` and `Authorization` headers:
6060

61-
```js
61+
```jsx
6262
"origins": ["https://www.example.com"], "allowedHeaders": ["Content-Type", "Authorization"]
6363
```
6464

docs/troubleshooting/firebase-issues/content_manager_firestore_error.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ This error typically occurs when Firebase permissions or authentication settings
3232

3333
FlutterFlow requires the following roles to be granted to `[email protected]` for proper functionality:
3434

35-
- **Editor**
36-
- **Cloud Functions Admin**
37-
- **Service Account Admin**
35+
- Editor
36+
- Cloud Functions Admin
37+
- Service Account Admin
3838

3939
To add these permissions:
4040

@@ -78,15 +78,13 @@ This error typically occurs when Firebase permissions or authentication settings
7878

7979

8080

81-
:::info[Still Not Working?]
82-
Try Reconfiguring Permissions from Scratch
83-
:::
81+
:::info[Still not working?]
82+
Try reconfiguring permissions from scratch.
8483

8584
If none of the steps resolve the issue:
86-
8785
1. Remove existing Firebase permissions.
8886
2. Re-add all necessary roles from scratch.
8987
3. Follow the full setup instructions in the **[official FlutterFlow Firebase integration guide](/integrations/firebase/connect-to-firebase/)**.
90-
88+
:::
9189

9290
By following the steps above, you should be able to resolve the error and continue using FlutterFlow CMS without interruptions.

docs/troubleshooting/firebase-issues/firebase_storage_limits_in_flutterflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Managing Firebase Storage properly is essential for controlling your app's file
1212

1313
- **Spark Plan (Free)**
1414

15-
- Includes up to **5 GB** of storage.
15+
- Includes up to **1 GB** of storage.
1616
- Exceeding this limit requires upgrading to a paid plan.
1717

1818
- **Blaze Plan (Pay-as-you-go)**

docs/troubleshooting/firebase-issues/what_to_do if_firestore_indexes_are_not_deployed.md renamed to docs/troubleshooting/firebase-issues/resolving_firestore_index_deployment_issues.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
keywords: ['firebase', 'deployed', 'firestore']
3-
slug: /what-to-do-if-firestore-indexes-are-not-deployed
4-
title: What to Do If Firestore Indexes Are Not Deployed
2+
keywords: ['firebase', 'deployment', 'firestore']
3+
slug: /resolving-firestore-index-deployment-issues
4+
title: Resolving Firestore Index Deployment Issues
55
---
6-
# What to Do If Firestore Indexes Are Not Deployed
6+
# Resolving Firestore Index Deployment Issues
77

88
If your Firestore indexes are not being deployed as expected, follow these troubleshooting steps to resolve the issue and ensure your app performs correctly.
99

@@ -30,7 +30,7 @@ If your Firestore indexes are not being deployed as expected, follow these troub
3030

3131
- Update your Firestore rules in both Firebase Console and FlutterFlow.
3232
- Ensure they match your app’s data access requirements.
33-
- **[How to Update Firestore Rules](../integrations/database/cloud-firestore/firestore-rules/)**.
33+
- Follow the detailed steps in the **[Firestore Rules documentation](../integrations/database/cloud-firestore/firestore-rules/)** to correctly configure your rules.
3434

3535
![](../assets/20250430121118592064.png)
3636

@@ -45,7 +45,6 @@ If your Firestore indexes are not being deployed as expected, follow these troub
4545

4646
:::tip[Additional Tips]
4747
- Make sure you completed all the steps above before retrying deployment.
48-
- If the issue persists, review the **[FlutterFlow help article](https://intercom.help/flutterflow/en/articles/9127351-what-to-do-if-firestore-indexes-are-not-deployed)**.
4948
- For advanced troubleshooting, check Firebase logs and permissions in Google Cloud Console.
5049
:::
5150

0 commit comments

Comments
 (0)