I'm trying to upload a screenshot to my app and I'm having an issue (app store connect) - store

I'm trying to upload a screenshot to my app and I'm having an issue (app store connect).
Notably, I have some apps in the past that I managed to upload screenshots for App Previews and Screenshots. And now I can't.
I get this message when I try: Invalid GeoJSON: Your routing app coverage file is invalid. For more information, see the Location and Maps Programming Guide. "
The problem

I changed the browser and its work..

Related

Large number of files missing in fileManager of a website deployed on Azure App Service

I am unsure if this is happening by design, or it's supposed to work this way. Through Visual studio Publish option, I published my ASP.NET Core website on Azure App Service. Now, when I access the fileManager on https://mywebsite.scm.azurewebsites.net/fileManager, I am missing majority of the files. I can only browse some log files, several zipped packages.
The website itself works fine when I am trying to access it on the link, however I am unable to browse all the files for it. I was wondering if this is an intended design, or I have done something wrong.
Kind Regards.
HTML5 component, that allows web pages to store named key value pairs locally. It just setting to store our web app.
To solve the files not able to view via kudu
Open Browser -> go to Developer tools or hit F12 -> In the console run the following cmd
window.localStorage['maxViewItems'] = 1000
Still you are facing issue please check and compare with Azure App Service Editor and Kudu files. I had checked both Kudu and App Service Editor shows the same files which contain the web app.
Refer Kudu error with maxViewItems in localstorage

Uploaded images not displaying after publishing on azure

Good day everyone I have a Web App created using Entity framework it has an upload feature and the upload feature works on localhost. Now after publishing to azure the site is working however the uploaded images are not displaying when I try to upload a new image it gave an "An error occurred while processing your request". Connection string is correct since other data are showing I changed the permission of the upload folder then republished still the same. Looking at the dev console it is showing failed to load resource. But why? Do I need to configure azure? Any help is appreciated thank you!
What I did was look at azure website's Kudu console (something I am not aware of) and upon looking at the Kudu console I realized that my upload directory is not included which is why the images are not loading it doesn't exist. I don't why it is not included but eventually I created a new upload directory at the kudu console and manually transfer the photos after that the photos are now displaying and upload is now working. For references: reference 1 reference 2

Azure web apps: “You do not have permission to view this directory or page” error

I am trying to deploy my nodejs application on azure and I got this error :
“You do not have permission to view this directory or page”
I followed this tutorial from Azure web site. To be sure Itried again but with the hello wold example given in the tutorial. However, when I deploy the zip, I got a successful deployment but when I try to access to my web site I get the same error.
I searched on internet about this error and I tried to follow the response from the following links link1, link2 but I still get the error.
Do you have an idea please ?
I would be very thnakful for any help.
Going through the documentation, if you get the issue after deploying the ZIP it means that there is an issue with sample App.
https://learn.microsoft.com/en-us/azure/app-service/app-service-web-get-started-nodejs#download-the-sample
Make sure you follow the process accurately.
Also did it run locally?

Azure endpointName.azureedge.net error

Azure endpointName.azureedge.net created successfully but while accessing Endpoint url it show error
You do not have permission to view this directory or page.
Did I need to add Custom domain to work it out.
Please guide me.
Which endpoint do you add in Azure CDN profile? If adding Azure web app as its endpoint, which language do you use to develop your web app? From my experience, Please try to input detailed path in your url, for example https://endpointName.azureedge.net/default. We can also set default page at Azure web app Application settings like below screenshot:
Build your solution in release mode
Try to publish it with using publish option of project then check

How to resolve error 500 on Azure web app?

What I have:
VS2015U2
ASP.NET 5 MVC 6 website
Deployed to Azure Web App
The site works locally
When I deploy to Azure I get internal server error (500)
I'm unable to Attach a debugger since they messed up something with the latest versions (tried manually too https://azure.microsoft.com/en-us/blog/introduction-to-remote-debugging-on-azure-web-sites/)
I have app.UseDeveloperExceptionPage(); but I guess the site is failing during configuration so it doesn't display any other information.
So how to resolve this? I need to see the .net exception but I have no idea how to do that.
Try adding Application Insights to the app. You should see errors on startup of your application.
I would also take a look at your startup code to see if you are writing to disk anywhere during configuration or app.start. This might be the case if you are using AAD in any capacity.
You can also hit up the KUDU console by targetting https://sitename.scm.azurewebsites.net . You will be able to navigate in the debugging console to see the RAW logs from IIS. That might shed some light into the situation. See KUDU for more info.
I solved this problem like show below.HTTP 500 error interested about that is not allowed to access the server.Go to azure portal address and choose your database.Press"Set server firewall " and Allow Azure services and resources to access this server choose "Yes" save that page and refresh your service.Than you can see your data
Use the KUDU console at https://sitename.scm.azurewebsites.net
Go to web.config file and check if the process path is correct.
I used the Azure Log Stream to help figure out what was going on. As Karishma Tiwari - MSFT said, the issue ended up being my web.config file (which was built for .NET 3.5 and not 4.7)
Here's the tutorial to set up Log Streaming: https://blogs.msdn.microsoft.com/azureossds/2016/09/28/how-to-identifyreview-errors-on-php-applications-in-azure-web-apps-using-log-stream-service/
My particular app's solution was to update my Azure App Service to use .NET 3.5, in its Application Settings, like so:
For me it worked after I turned "Allow Azure services and resources to access this server
" to Yes
I got this error even though I had enabled Application Logging (Filesystem), Detailed error messages and Failed request tracing in App Service logs
This page isn’t working
mysite.azurewebsites.net is currently unable
to handle this request.
HTTP ERROR 500
However by navigating to Log stream and selecting Application Logs I could see a detailed error message:
I know this question has already been answered but here is a recent view of the Azure Portal where I found a solution to this problem

Resources