How can i make my MSI file hosted to my Website - asp.net

On many sites we will have an option to download setup files from the site directly. How to do this. I need to add both Zip files and setup file to my website so that when user clicks on it it should be downloaded for installation

Upload the .msi and the .zip to the server and link to them. This should be very simple unless I'm missing something.

Related

How can I change permission for an Azure Web App, so I can actually upload files via FTP to it?

How can I change permission for a Web App, so I can actually upload files via FTP to it?
What is it I need to change in order to have permissions to upload via FTP?
I have a running site that runs ASP.Net Core. Everything works.
For debugging purposes on a weird js issue, I need to be able to edit a few js files directly on the site via FTP.
When I connect via FTP (with the credentials from the "publish profile") I can connect just fine and download files - I use Filezilla.
But if I try to upload anything, I get "550 Access is denied."
I have full access to Azure Portal etc for the site, incl. Kudu.
It does not matter if you can upload files via KUDU or some other thing - I specifically need FTP.
Thanks for asking question! Could you please check if your firewall is blocked outgoing FTP writes.
Also, make sure you're not trying to write to a read-only file. For this suggest using the Kudu Console (https://[sitename].scm.azurewebsites.net/DebugConsole) to look at your files and check their permissions (e.g. using 'attrib' command).
For more information about KUDU, please refer to this document
Refer to this document link might be helpful: https://learn.microsoft.com/en-us/azure/app-service/deploy-ftp#get-ftp-connection-information
Try checking the ftp link which is provided by deployment center, For this Go to your web app, click Get publish profile, choose the Publish URL under tag <publishProfile profileName="your-webapp"

How to copy file structure from wordpress website to new host

I'm having troubles moving my current website to a new host. The website is hosted on a www.website.org/wordpress and I need to move the entire website to a new server to which I have access via ssh and ftp.
The plan is the usual, backup all files and the database and then move the files to the new server, where the website will be hosted in a new address. But the tutorials that I've found use cPanel or other management tools that I don't think that I have access to.
The other method is to try and copy every file from my current webhost using ftp, but I don't know how to connect to the website and copy all files.
Somehow I'm having problems downloading the files from my website to my computer to move them to the new server.
Is there a simple step that I'm missing on how to log into the website to copy the file structure from wordpress?
Thanks in advance for any responses.
Through ssh you should try the scp command.
You can read more in this explicative answer How to copy a folder from remote to local using scp?.
EDIT
In your case would be:
scp -r user#sourcewebsite.com:/path/to/wp user#destinationwebsite.com:/home/user/Desktop/
Let's check that source and destination folder paths actually exist.

How to download multiple files from alfresco repository

I have more than 1 TB data in one site of Alfresco repository.
Now from that site i want do download all the files with .xml extension
As i checked in Alfresco share, there is no any provision provided by alfresco.
So can anyone tell me some better ways using that i can download multiple files from same site.
Thanks in Advance .
Use Alfresco's built-in FTP server and download client like FileZilla (supports recursive downloads and filename filters).
You can enable FTP server by settings tomcat/shared/classes/alfresco-global.properties:
# FTP Server Configuration
ftp.port=2121
ftp.enabled=true

Clear Temp ASP.NET files from Azure Web Site

I have a issue with a ASP.NET nopCommerece Plugin that seems to be cached on the server.
I have cleared the nopCommerce cache and restated the application but it didn't help
One of the normal steps is to clear out \Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files but since this is a Azure Web Site, I only have access via FTP and I don't have access to that directory.
How do I go about clearing the Temp Files.
when you publish the website on to azure, by right clicking and choosing publish, there should be a option under setting saying: Remove additional files at destination. Check it and publish.
I managed to do this by creating a temporary file in the bin folder of my website.
This casuses the temporary hash file to change in the temp folder and then ASP.Net rebuilds everything.
See here for more details about the hash file and its relation to rebuilding.
Remove Additional files didn't fix my problem as it only removes files in webroot not the temporary asp.net files. As far as I can see with Azure you have no access directly to the temporary asp.net files

Enable downloading from my web site

I have a web site application and i need my web site to allow user to download a setup file from my web site how can i do this ?
I Asp.net2.0 _ C#.
Place the file somewhere within your website and make a link to it:
Click here to download
If a simple links does not work, please update your question with a description of the problem you are facing. You might have to configure your web server to serve files of type MSI or EXE (whatever your installer is packaged as).

Resources