Not able to install Apps #214
-
HI, I have tried to install Search App but it's throwing the error message "WARNING saleor.app.tasks Failed to install app. Error: The auth data given during registration request could not be used to fetch app ID. " The same i am able to install in the my local machi but it's throwing an error in the public IP. Is there some other configuration that needs to be done when using the Public IP? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 12 replies
-
Hello @chowadfrepo 👋 Can you provide step-by-step instructions on how exactly do you install the app? |
Beta Was this translation helpful? Give feedback.
-
Hi Saleor Team, The following steps I have done when App Installation Failed, I have used the APl method
Thanks, team for your suggestions. |
Beta Was this translation helpful? Give feedback.
-
Hello team, i tried to clean install my saleor on vps today and deploy some apps with traditional method that worked fine for me some week ago, but now i recieve same errore error of chowadfrepo Same problem on old saleor istance, and new fresh instance |
Beta Was this translation helpful? Give feedback.
-
Hi, I think that changing Saleor's domain from the default mutation ShopDomainUpdate{
shopDomainUpdate(input: {domain: "example.com"}){
shop{
domain{
host
}
}
}
} or by starting the Django shell ( from django.contrib.sites.models import Site
site = Site.objects.get_current()
site.domain = "example.com"
site.save() also, remember to properly set |
Beta Was this translation helpful? Give feedback.
Hi, I think that changing Saleor's domain from the default
localhost:8000
will solve your problem. Let's say you are hosting Saleor atexample.com
. You can do that withshopDomainUpdate
mutation:or by starting the Django shell (
python manage.py migrate
) and running:also, remember to properly set
ENABLE_SSL
environment variable (True
if you are using https) and to restart Saleor instances asSite
objects are cached in memory.ENABLE_SSL
…