WAMP HTTP Error 404.0 - Not Found PHPadmin - wamp

Hi I've just downloaded WAMP got everything set up apart from phpadmin. When I click on the phpadmin button it takes to a webpage and has the error sign
HTTP Error 404.0 - Not Found
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
Any help would be much appreciated.

Related

Application Requester Routing WCF Service error 404

We migrated our outdated ARR to an High Availability ARR solution. The problem we are facing now is on a WCF web service.
When I navigate to www.company.com/webservice/service1.svc I get the error:
Server Error in '/' Application. The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its
dependencies) could have been removed, had its name changed, or is
temporarily unavailable. Please review the following URL and make
sure that it is spelled correctly.
If I navigate to www.company.com/webservice/ I can see all the files including service1.svc.
Any pointers to where to look? I cannot figure it out.
Appreciate your time

How to redirect to valid page if got 'The resource cannot be found'? Please suggest

I have a requirement to catch this exception or show some log if browse with below invalid filename :
http://localhost/ABC/xyx.asmx
Server Error in '/' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /.asmx
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.8.4261.0
In web.config, you have two methods to custom error page.
When the error is caused by IIS or any other but not asp.net, IIS will shows error page like these.
If you want to change them, check the custom error pages in Error Pages module. Then delete the existing status code and corresponding page path, and add a new one.
When the error is caused by the asp.net, IIS will show error page like yello screen of death(YSOD). You can change it in section. If you want to show custom error page to remote visitor and YSOD to local vistor, you can set mode to RemoteOnly. You can configure this in .NET Error Pages Module.

500 internal server error in back end - Joomla 2.5

I have installed new site in Joomla 2.5 and it was working fine at first,(front end and back end),
but today when I wanted to do some changes in the back end, after I log in to the site, It shows this error:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
I read some questions that were like my problem,
I made some changes in configuration.php file as below:
$log_path='./logs';
$tmp_path = './tmp';
but it did not work.
Please help me:)

Server home is not valid for ColdFusion10 in CF Builder

Today when I was trying to configure my ColdFusion10 Server with the ColdFusion Builder 2, It shown me a error message like "Sever home is not valid", Screenshot:
I can not move forward both the "Next" and "Finish" button is disabled and showing the error message.
Can anyone please suggest me which path I should provide ?
As per your comment above: you've selected "JRun" as your application server, but ColdFusion 10 runs on Tomcat. That'll be your problem.

How to get an error message out of my webpage

I have a web page that when I run it on a remote computer I get the message saying that remote errors cannot be viewed
When I go to view it on my web server machine, I get a message saying:
Internet Explorer cannot display the webpage
• Most likely causes:
• You are not connected to the Internet.
• The website is encountering problems.
• There might be a typing error in the address.
What you can try:
Check your Internet connection. Try visiting another website to make sure you are connected.
Retype the address.
Go back to the previous page.
I can get to google fine, so it is not the internet connection.... But this message gives me nothing to work on. How can I get more info as to why my page is not working?
I tried going to IIS Mananger and right clicking on the site and selecting browse. But my site is an HTTPS site so that does not work.
Any ideas would be great.
The quick and dirty fix would be to edit the web.config of your ASP application like that error message says so that you can see what the error is on Remote Machines. I would also check the Server logs to see if anything has been reported there.
Make sure there is a customErrors tag with the mode attribute set to "Off"
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Remove this through in production, because you don't want outsiders to see these error messages and get information about the workings of your application, which is a security risk.
UPDATE
As for your error on your local IE make sure that the option
view friendly http error messages is disabled. In IE8 it is under:
Tools > Internet Options > Advanced
This might fix the problem of IE showing that cryptic message.
Try to run that same code locally. You can write a log on exceptions. and can view that log. These are disabled on such servers for security of your website.