how to upload react project to domain.com hosting - hosting

The problem is that I cannot find the cpanel for my host until I upload the project files, even in the Advanced Tools page, there is no cpanel box

Related

Published .Net Core Web Application to Apache2 Web Server only Showing up as Directory Search

I am currently working on setting up a QA server at my home in order to test applications, and I have run into a bit of an issue. I have attempted to publish my .Net Core 6 website to the server by the following steps:
Publishing the website via Visual Studio, to a local folder. Visual Studio Publishing
Copy the published website over to the server via Filzilla. Filezilla Copy
Unfortunately, when I go to the url I only wind up with a directory search of the published files: Directory Search
The webserver is Apache2, running on Ubuntu Server 22.04. How can I get my website up and running on this QA server, rather than just a directory search?
Thanks in advance for your help!
4L4M1N's comment is correct. The publish files you generated just for windows IIS. not Apache2.
So you need check the official to create .htaccess file, and the webserver will be working.
Reference Video:
How to Deploy .Net Core Web Application to Ubuntu Linux

How to deploy ASP.NET Core app to Apache on macOS?

I'm running the Visual Studio for Mac (Preview) 17.4, and I've built a new ASP.NET Core app (Razor). It runs on my desktop Mac's localhost fine via Debug > Start Debugging. Cool.
Now I'd like to deploy it to another macOS server, on which I've installed the .NET 6.04 SDK, which includes both the Runtime and the ASP.NET Core runtimes, from here:
https://dotnet.microsoft.com/en-us/download/dotnet/6.0
On this Mac server I've also installed Apache (using Homebrew), which has a working test HTML website serving from here:
/usr/local/var/www
Visual Studio has a Build > Publish to Folder option, which currently dumps all its files to a local folder on my dev machine:
[local project folder]/bin/Release/net6.0/publish
...it contains DLLs, .JSON, a UNIX executable, a wwwroot folder of static content, and a runtimes folder. I don't see any pages (in VS my web app is comprised of .cshtml pages)
So my question is, can someone explain where the binaries go in my target Apache site folder to properly serve this Razor project? Or share any guides on how to get the VS-published output running within Apache on the Mac server? I've copied the files over into the Apache website folder, but haven't been able to serve anything correctly. I found some guides for Linux but not specifically Apache on macOS. I come from a Windows background so don't know a whole lot about Apache on macOS, which is why I'm trying to get this dev site running on it.
Thanks
In Visual Studio, go to Build > Publish to Folder and choose a local folder to publish to.
On your Apache server, install the .NET 6.04 SDK from https://dotnet.microsoft.com/en-us/download/dotnet/6.0. This will include the Runtime and the ASP.NET Core runtimes.
Copy the contents of the publish folder from step 1 into the Apache website folder.
Edit the Apache configuration file to add a virtual host for your ASP.NET Core site.
Restart Apache.
Your ASP.NET Core site should now be accessible at the virtual host URL you configured.

Running Magento project from PhpStorm

I have downloaded magento project from my ec2 instance. I have just downloaded the magento root directory folder and imported into the phpstorm. Now how do I run that project. Where do I setup server and database settings. How to deploy the project
Go ahead and create a database of your choice. Then just go to your browser and run your localhost/projectname/index.php. It will ask you for all the requirements and install your project right there.

How to Publish an Umbraco Intranet?

I have just completed an Umbraco intranet using WebMatrix. Now I want to publish it to our server so that everybody can see and use it. WebMatrix can only do Web Deploy or FTP, so I opened the project in Visual Studio 2013 to publish it there. I was able to publish it to my desktop, where I have attempted to get it running here before uploading to the server. So in IIS I 'Add a Website' and set up the project, using port 101. I tried it both on my desktop and then moved it to wwwroot and in both cases IE says 'This page can't be displayed'. I am using the CE database with Umbraco 7.2.4.
Help please. I've been at this for days now.... I've tried the umbraco forum and google and got nowhere. :(
Tony
If you have remote desktop access to your web server, you don't actually need to rely on web publishing. You can just build the website in release mode, and then copy all the folders from the web project onto the webserver.
On the web server you can manually set up an IIS website and set up host names etc. You shouldn't need to deploy it using visual studio, this way is much safer
In IIS, you should set up a new website, using port 80 on your HTTP binding.
From the sounds of the error, IIS is not looking at the right physical path.
You should use the Microsoft guide on How to set up your first IIS Web Site as a starting point.

I've successfully deployed a MVC3 website on windows azure but it didn't work

I've made a free trial account on Windows Azure and I tried to deploy one of my MVC 3 projects. On my account on Windows Azure the website status is "running" and the database is "online". The deploy was successfully, but when I go to the URL, nothing happens.
Why is that?
URL: http://productsellingpage.azurewebsites.net/
When a Windows Azure Websites is created but nothing is deployed, opening the URL in a browser return the following page:
I could verify that the websites URL you provided is already registered with Windows Azure Websites so it is a correct URL and because it does not show the placeholder page as seen in above image, so I am sure something is deployed to this website.
Your best bet is to contact Windows Azure Websites team directly from dedicated forum here.
I found this blog helpful to publishing via Visual Studio
http://blogs.msdn.com/b/avkashchauhan/archive/2012/06/26/deploying-windows-azure-website-using-visual-studio-web-publish-wizard.aspx
But the publish tool direct from Visual Studio can be unreliable so I have resorted to upload via direct FTP. The host name of the site will be in the right hand pane of your website details.

Resources