Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't create firebase indexing due to this message This page has moved to new location. Please update your bookmarks

When I try to create a firebase indexing through the link that is created automatically it shows in a popup message "This page has moved to a new location. Please update your bookmarks." and it doesn't create the firebase indexing

can someone help me?

a screenshot of the message shown

like image 1000
Daniel Coglitore Avatar asked Mar 02 '23 04:03

Daniel Coglitore


2 Answers

My link was without the "database" word already, but when I changed the:

..google.com/v1/r/... to ..google.com/u/0/...

it worked. Note the "v1" and "r" is replaced in the working link for me.

I am using Flutter. Could be the Flutter Firestore package that needs updating, I don't know where the link is populated from exactly.

like image 156
Wesley Barnes Avatar answered Mar 04 '23 18:03

Wesley Barnes


Just copy the url in the console, and remove /database/

For Eg, Convert this

https://console.firebase.google.com/u/0/project/project-name/database/firestore/indexes?......

to,

https://console.firebase.google.com/u/0/project/project-name/firestore/indexes....
like image 43
DJ Hemath Avatar answered Mar 04 '23 18:03

DJ Hemath