Screen Shot added
I want to upload PDFs to azure webapp folder and i used Kudu service to do this. but when i drag and drop into area all are seems to have uploading but at the end it will only show 199 files. i'm new to windows azure services and any one have idea? Hope you all understand my issue.
Thanks..!
You could just package them as a Zip file and drag-n-drop that to Kudu, it will extract it automatically for you.
Related
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
I'm managing small web app, deploying with (always) FTP. My teammate requested me to upload a folder including small teaser website. As usual routine, I opened the Azure Web App Deployment Center FTP dashboard and copied server address and credentials and pasted them into FileZilla(latest version). Login went well and I could see file list and folders. However, when I tried to upload files, remove existing files, all of the writing attempts failed with 550 Access is denied error. What could be the cause of this?
On the other hands, I could remove existing files on KUDU debug console.
I check the ftp link the deployment center provide, looks like the portal provides a read-only ftp link. So go to your web app, click Get publish profile, choose the publishUrl under tag profileName=<yourwebname-FTP>.
I am using Microsoft Azure for an WordPress website.
Recently, I created a folder in the root directory of my WordPress and I have to upload 4000 photos there.
Using the DebugConsole / Kudu I was able to create the folder and transfer the files but I noticed that only 299 files were transferred as shown here:
I tried to add the files again there but it won't work.
How can I upload the rest?
Looks like you hit the disk space limit. You can check the usage of disk space via Kudu (https://<your app name>.scm.azurewebsites.net/Env.cshtml).
Currently, there is a limitation of 299 files and directories we can view in Kudu. See Some folders are not visible in KUDU #2595. So, I'd recommend using the FTP client tool to connect to Azure and check exactly how many files were uploaded.
About how to connect to Azure App Service using FTP, please refer to:
https://learn.microsoft.com/en-us/azure/app-service/app-service-deploy-ftp
Another option is to use App Service Editor, which has fancier UI:
https://<your app name>.scm.azurewebsites.net/dev
I just setup an indexer using the portal to index documents in a blob storage. When I try to change the advanced settings to exclude image files (png, jpeg etc.), the settings are not saved.
I can also not find anywhere, using the GUI, to set excludedFileNameExtensions...
Any help would be appreciated.
Matt
Thanks for reporting this; it is a bug in Azure Search portal. The fix will be deployed in the next few days. In the meantime, you can work around by updating the indexer programmatically, using either REST API or .NET SDK.
Error running Reader:
SQL Statement:
SELECT id, domainName FROM umbracoDomains ORDER BY id
I performed an Azure restore of my umbraco website which is using the umbraco.sdf file in the App_Data folder. After the restore I have this error. It errors when I try to log into the Umbraco backend. The Umrbaco.sdf file is only 64KB is that normal? It seems like Azure deleted some of the tables from the .sdf file on restore? In the meantime my site is down and there's no hope in retrieving all my data in my db. Help please!
As far as I know, restoring the web app would replace your current web app data and settings with content stored in the backup. According to your description, please try to check your db file in the specific backup as you mentioned in the above snapshot via this tool Microsoft Azure Storage Explorer.
If the size of Umrbaco.sdf file seems as normal, you could try to upload the Umrbaco.sdf file to you web app manually via KUDU or FTP for a temporary processing to make your web app available.
Note: When you replace the Umrbaco.sdf file, you need to add a app_offline.htm file to the root of your webserver for releasing the Umrbaco.sdf file. After you replace the db file, you could remove the app_offline.htm file to make your web app online.