How do I stop local kentico project from taking up port localhost:8080 - visual-studio

I installed Kentico and have been going through the tutorial. But I needed to work on another project and when trying to do so I was unable to as the Kentico project seems to be running on the localhost:8080 port.
I would like to restore localhost:8080 back to the way it was.
This is the error that I get when opening localhost:8080
localhost error screenshot
I have tried to enable directory browsing and trying to stop the process running on localhost:8080 but they did not work.
Any help would be much appreciated if anyone has any suggestions or has had to deal with something like this before.

In IIS you need to stop the site you were working on and start the other site you want to work on.

As per the error snapshot (HTTP Error 403.14- Forbidden), it looks like its a access issue for your respective website virtual directory.
To overcome this problem you need to provide IIS user permission and the current system user permission to the kentico website folder and also make sure the path of your project in IIS pointing to Kentico Website solution until root folder where you have a web.config file.
How to give folder permission you can check on this reference link
IIS7 folder permissions for web application
Thanks and Regards
Nikhila Pocha

You can change the port of the websites in the applicationhost.config file for IIS Express.
Mine is located under '%userprofile%/Documents/IISExpress/Config'.
From there you can search for the 'sites' node. Look for your website and change the port number in the following line:
<binding protocol="http" bindingInformation=":8080:localhost" />

Related

IIS is throwing HTTP Error 500.0 - IsapiModule

I've created one VM windows 2016 on Azure and installed Weblogic 12.2.1.3 and SQLServer2016.
Deployed an ear file and can get to the application login page.
I've configured IIS with this my application to have https url. I followed everything that we usually do on our on premises servers but I'm getting a weird error. Does anybody can help me please?
According to your description, I suggest you could try to use below steps to solve this issue.
1.Ensure that the path to the ISAPI DLL is correct
Open the IIS mangement console and locate the web sites and find the hanlder mapping feature.
Then you find the myapp_iisproxy handler in it and check the executable's path is right or not.
2.Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server's machine account.
3.Verify permissions for the DLL. Make sure your application has the permission to access the dll file.

Where is the entry point in the file system to open a MEAN stack site?

For a LAMP website hosted on your localhost server, you would simply open index.html or index.php of the website in a browser to run the site.
Where is the entry point to open a sample website using the MEAN stack?
I've loaded a copy of this repository https://github.com/linnovate/mean into a www/var/ directory, to see if I could get a MEAN site working. In attempting to access
/mean-master/packages/custom/meanStarter/public/views/system/index.html.
It fails to open "403 Forbidden".
I am using Ubuntu 16-LTS with Eclipse, I believe I have the appropriate dependencies but I still might be approaching this all wrong.
My goal is to get a sample MEAN stack site running on my localhost and explore from there.
You have to run the node server command which will start the node web app contained in the server.js file. Basically server.js is the starting point.
In the readme itself it explains how to start it : https://github.com/linnovate/mean#invoke-node-with-a-task-manager

Installing ColdFusion 11 on Windows Server 2012 / IIS 8.0

I've done this many times in the past, but this is new, and I think CF11 is the problem. Not sure.
Fresh Windows Server 2012.. installed CF11. Selected "Configure All IIS Websites" during install. There's only two sites configured in IIS -- Default, and one other, which has its own name (test.mydomain.com) configured in the hosts file and in DNS. In its webroot is a single index.cfm file, and a subdirectory thereof, is an actual ColdFusion web app.
When I browse to the webroot, I get a standard Microsoft IIS page, rather than the index.cfm file. If I browse to the subdirectory, I get 404.
I've set index.cfm as the default document.
The path specified to the webroot is correct.
If I run the wsproxyconfig.exe file, it shows nothing is configured. I click Add, select IIS. In the drop-down where you configure a specific site, it says None and is not selectable. If I try to add, I get the error, "Unable to configure WebSocket Proxy Enable the required WebSocket Protocol option in IIS." I've looked all over IIS and can't find where this setting might be.
What's interesting is I can get the cfadmin page to load and function just fine (127.0.0.1/cfide/administrator)... there are no port numbers in that URL so it must be passing through IIS. So I'm not really sure what the problem is. Is it the connector? Is it something else? I'm stumped.

Symfony2 Assetic files and Missing routes in Windows

I have a Linux machine, and a Windows 7 machine, each of which is using the exact same code (they are both using the same git repo). I am running the Symfony2 code on both servers in the dev environment.
The website loads and runs just great on the Linux server. On the Windows 7 server (my local laptop) the server seems to be missing all the routes it needs to render the site correctly. For example:
None of the CSS and JS files are loading on the site. They are throwing a 404 page not found error.
If I attempt to navigate to any other pages from the home or landing page, a 404 error is always thrown: The requested URL was not found on the server.
I've cleared the cache, and run through the app/check.php on the windows box, but to no avail. I'm wondering if the Windows server setup needs to be modified in some way so the routing works as expected? I'm thinking that the problem is the routing on the Windows server, as the requested URLs can't ever be found.
Any ideas on where I can go to find a solution or any tests I can perform to track down the issue?
Thanks,
Derrick
In the httpd.conf file, you must be sure that:
LoadModule rewrite_module modules/mod_rewrite.so
is active. In my windows distribution of apache 2.2, it was commented out. I'll suggest to Symfony2 that they add this module to their check.php file for future developers. I'm guessing they just assume that it will always be enabled in the apache distributions.

where we can place crossdomain.xml

Hi I have deployed my flex application on application(_http://myserver:11090/apps) and using proxy server (web server - _https://mysite.site.com) which redirect to application server.
But at run time application search crossdomain.xml at the location _http://myserver:11090/crossdomain.xml due to this it gives popup "Authentication required" for JBoss and ask credentials of app server.
can you please help me where I should place crossdomain.xml file on app server or web server's root directory.
right now crossdomain.xml is placed at the location _http://myserver:11090/apps/crossdomain.xml
Please help me. I am stuck due to this problem
Thanks in advance
You need to place the crossdomain.xml file in the root of your server, not in a subdirectory. If you need help on how to configure JBoss or your proxy to allow this, I suggest you try https://serverfault.com/ :).
Place crossdoamin.xml at webapps/ROOT folder Then it will work.

Resources