I migrated my projects to the "new" Firebase via google.com. When I try to access my project database, I get only "Unable to load your database." I'm also making an assumption here that the "realtime database" replaces the old Dashboard where I can see data being added or removed from Firebase by my app.
There is no explanation whatsoever beyond the above message. Yet I know there is accessible data there because the listeners in my app continue to respond to it. Can anybody help? Thanks in advance.
Fixed it!
Signed out from my Google account and logged in again.
Another way: open the console (F12) in the browser and run localStorage.clear()
You have solved the problem and easily you should close the tab and reopen the home page in Firebase you have reload the firebase website or close than you web browser and reopen again but your have close all tab and reopen page in Firebase and open your project and see
Related
I was going integrate google login in application.
As i have login into https://console.developers.google.com/ but not able to get my project (which i have created) data for client ID and client secret Key, or other details. I don't know what is happening.
Error, when i search my project name and clicked i get this
Error when, all registered projects are fetched.
As I was on Google Chrome. It was not working, but when i shifted to incognito mode. It works well. Please do hard refresh for well response.
OMG
Just as i go to deploy an app, i start getting this message :
Error publishing application: could not access deployment (File may have been deleted in drive or you may no longer have permission to access it).
screenshot
So i am the admin of my gsuite account and the owner of the file. tried turning off and on the appmaker in the admin page of gsuite.
Just before i got this message i deleted a bunch of defunct scripts from my drive. could this be related? could it be related to the projects in the cloud platform?
i have 'deployed' the app using the [PUBLISH] button which works fine!
thanks for anyone who can help
i didnt find out the cause of the issue but this problem can be worked around by exporting the app to zip, creating a new app and importing the zip file...
just answering this here incase someone gets stuck with the above message.
I am deploying a PWA to firebase using the tutorial from the polymer project website. I have no issues deploying to firebase, but if I deploy a second time the new page does not load. It will load the old page until I clear the cookies. I see understand that the way a PWA site works is like an application where it stores parts in memory for faster load times. Is there a setting I need to change to make it load most recently deployed webpage? I appreciate all the help, thanks in advance!
You might be seeing an effect of your service worker. Try deleting the currently registered service worker from your browser so that the new one can take over.
In Chrome 51/52, open DevTools while on your site, and go to the Resources tab, and then Service Workers on the left panel. Click Delete to remove the service worker. You could also check the box for Update on reload, which allows you to update the service worker simply by refreshing the page.
I have created a project in firebase. I have also added an app in Admob with two banner ads. When I try to link this app to Firebase project, it always gives me this error :
Unable to link app to Firebase. Please refresh the page and try again.
I tried refreshing the page and link the firebase project but no luck. It suggests me the firebase projects to choose in the dropdown, but when I try to link to a specific project, it doesn't allow me to link.
The error you're seeing,
Unable to link app to Firebase. Please refresh the page and try again.
is the base case message, unfortunately. It means that an unusual error has occurred, one so uncommon that it doesn't have a message of its own.
One reason we have seen it come up for people is that they've linked their AdMob app to a Firebase project, then deleted that project without unlinking it. This leaves the AdMob app tied to the dead project and unable to be linked to a new one. If that might be the case for your app, try this workaround:
Log into the Google Cloud Console (http://console.developers.google.com/)
Restore your project from deletion by using the steps listed here: https://support.google.com/cloud/answer/6251787
Unlink that project from your AdMob app using these steps: https://support.google.com/firebase/answer/6387949
Link your AdMob app to a new project as normal.
typically this happens if the project owner in Firebase is not the same user as the AdMob user trying to do the linking.
I have the following scenario: a Silverlight application (constructed to be OOB) embedded at an ASP.NET website where, if the user already installed it, a label saying that is displayed; otherwise, an install button appears. Eventually I can update the .xap file available in the website.
Now the problem: if the user executes the application through his Desktop/Start Menu, i'm able to update the application and suggest the user to restart it. But, if I update the .xap file and upload it again to the website, apparently no "Silverlight update" occurs, it is displayed as a new application (if the user install it again, an application icon is displayed at his desktop).
Is there something I'm missing or there's nothing to do about this?
Thanks!
Signing the Silverlight application solves the problem.
When you run in a browser, updates are picked up right away (subject to HTTP caching rules). With OOB apps you need to use the App.Current.CheckAndDownloadUpdateAsync() method in your app to have it update.
http://msdn.microsoft.com/en-us/library/system.windows.application.checkanddownloadupdateasync(v=vs.95).aspx
The only drawback is that there is no way to just check for an update and give the users an option to download it conditionally; calling this always updates it if there is an update. You can however hook into the event and find info about the update should you wish. See this resource for more information: http://forums.silverlight.net/forums/p/180931/408554.aspx