Tagged Questions

A web server will return a status code of 404 when the resource that is being requested does not exist or cannot be found.

learn more… | top users | synonyms

-2
votes
0answers
22 views

Windows Server Essential 2011 - Remote Web Page - 404

when I try to access the remote web page from the external domain (https://remote.mywebsite.com) I got the "404 - File or directory not found." error. but from localhost (https://localhost/remote) and ...
0
votes
1answer
28 views

How to catch all wrong (urls) request to my ASP.NET app?

I have an ASP.NET web-site and to catch wrong urls requests and redirect them to homepage I put: <customErrors defaultRedirect="/" mode="On"> <error statusCode="404" ...
0
votes
1answer
75 views

Multiple DNS A record for one machine

I saw this post but it doesn't really address my situation. I am trying to add a second Address record for the same IP address but for some reason I am constantly getting a 404 bounce from ...
0
votes
2answers
39 views

Apache 404 Error While PHP File Exists

I am getting 404 error while the file exist. I gave the file (chmod 755) still the file does not show up. Strange part it only happens to few files. I am certain the file exists on the directory ...
0
votes
2answers
23 views

Configure Apache 2 to specify the same error documents for both 403 (Forbidden) and 404 (Page Not Found) responses

I'd like to know how to configure Apache 2 to specify the same error documents for both 403 (Forbidden) and 404 (Page Not Found) responses. I assume there is a directive to add to httpd.conf, but not ...
0
votes
2answers
51 views

How to reverse this Nginx rewrite rule?

I've been having trouble getting Nginx rewrites to work. On Apache I had the following rewrite, which directed all requests that did not request a PHP file to index.php: Options +FollowSymLinks ...
1
vote
1answer
114 views

IIS 6.0 on Windows Server 2003: HTTP 404 error on Virtual directory; system cannot find the file specified (win32 status code 2)

Very strange problem. I am running Windows Server 2003, with IIS 6.0. In one of the websites, there are three virtual directories: A, B, and C. For whatever reason, and, from my understanding, ...
1
vote
1answer
206 views

Nginx returning “404 Not Found” when invoking the upload module

I've set up Nginx and the upload module following Martin Fjordvald's guide, but whenever I submit a file to it, I receive Nginx's generic "404 Not Found" page. The file is not uploaded. Here's my ...
1
vote
1answer
63 views

Testing HTTP status codes

I'm running an Apache Tomcat server. Making some security testing I'd noticed than my server is returning a 200 HTTP status code of the default error page when I try to access to a non-existent ...
0
votes
2answers
72 views

Serve empty 404 page with mod_rewrite

I have a Drupal website which contains the below default mod_rewrite rules RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !=/favicon.ico ...
0
votes
0answers
66 views

Kohana and Apache: Routes Not Working Anymore

I am running Nagios Core 3.3.1, and PNP4Nagios 0.6.16, on Ubuntu 11.10. I must have unwillingly changed something in my configuration recently.. Anyway, after installing some new software (NagiosQL, ...
3
votes
4answers
185 views

How to prevent bots from trying to guess a link on my site

My logwatch report which I installed recently shows me this: --------------------- httpd Begin ------------------------ 0.78 MB transferred in 5864 responses (1xx 0, 2xx 4900, 3xx 0, 4xx 964, 5xx 0) ...
1
vote
1answer
235 views

Why do I get page not found (404) for correct links?

I have a very strange issue: Google is giving me that some links in my sitemap are not accessible and are giving 404 errors. However, I have tried to open the pages in question and it works fine. The ...
2
votes
1answer
88 views

IIS 6.0 / 2003 giving 404 error after period of time

I have a local development server running Windows Server 2003 that hosts a few applications running on IIS 6.0. I can connect to these said applications just fine but after an unknown period of time ...
0
votes
1answer
215 views

How to fix “404 not found” error on nginx configuration

I just installed nginx on debian, and do basic configuration(add server part) in nginx.conf file user www-data; worker_processes 1; error_log /var/log/nginx/error.log; pid ...
1
vote
1answer
54 views

Lighttpd - rewrite request when 404 error

I have question if it is possible do run mod_rewrite rule when 404 error occurs. Example: Request: http://domain.com/files/img/file.jpg If there is no /files/file.jpg, then Lightttpd should rewrite ...
0
votes
1answer
37 views

Redirect www.mysite.com/XYZ_404err_variety to www.mysite.com, how?

I get 404 errs with tangling urls such as www.mysite.com/XYZ_404err_variety, I want to redirect everything like that to www.mysite.com/, how? I am using *ix -server on apahce. I tried this one but it ...
0
votes
1answer
25 views

Can the re-occurring of 404 error lead to Internal server error (500)?

I'm wondering can the re-occurring of File Not Found (404) error eventually lead to Internal server error (500)?
1
vote
1answer
118 views

Failed PCI compliance - 403 (Forbidden)

Due to a recent upgrade in the scanning done by our PCI compliance testers, we recently failed a PCI, and the suggested solution is as follows: Configure the HTTP server to specify the same error ...
1
vote
1answer
65 views

Re-uploading file with unicode filename creates identical duplicate

I'm running a Django site on a Debian 6 system, with a gunicorn server and nginx 0.7.67 handling static files. The filesystem locale is set to sv_SE.UTF-8. I got a problem where another user uploaded ...
1
vote
1answer
195 views

Tomcat mod_jk cluster skip 404 http status

I am trying Tomcat Clustering with mod_jk for months and so far not so bad but facing a problem during deployment. I am using FarmDeployer to copy and deploy the WAR to other nodes in the cluster but ...
0
votes
2answers
90 views

ubuntu server 10.04 nginx 404 errors

What I am trying to do is setup a web server for development running in VMware with the IP address of 192.168.190.128. Nginx is installed and running and I get the "welcome to nginx" page. However ...
1
vote
1answer
93 views

Nginx cant serve files with special symbols in them?

So in browser i request a file that i know it exists 3a1c2aa4d488ae4d?s=40?f=78 but it gives me a 404 error and in log says that it couldn't find file named 3a1c2aa4d488ae4d. For some reason it ...
0
votes
2answers
161 views

IIS not allowing me to server files with .rdp extension

I am trying to host a .rdp file that will be publically available on the internet (without password, of course). IIS is not letting me use this file - I'm getting a 404 error saying it cannot find ...
0
votes
0answers
41 views

IIS7 is returning 404s for URLs that are valid

We have a number of sites all running essentially the same version of our in house CMS. Each of them is configured as a separate site in IIS7. However on one of them we are getting frequent 404s for ...
1
vote
2answers
132 views

Links break in IE9 when using Wordpress plugins in non Wordpress Page

I have a site that uses SEF URLs and htaccess RewriteRules to serve up the pages. This has worked fine for several years until the arrival of IE9. Now it appears that the links are not being ...
0
votes
2answers
290 views

nginx phpmyadmin 404

I am trying to install phpmyadmin on my nginx web server. I installed phpmyadmin without a problem. I created subdomain for it. For security reasons I didnt call my subdomain "phpmyadmin" i used a ...
0
votes
1answer
89 views

Why am I not able to access my own website on my computer (shows 404 error)? [closed]

I'm not able to access my own website www.prepjunk.com using my own compute. It shows a 404 error but it's running fine on another computer. I have also checked on proxy website; it is running fine on ...
0
votes
1answer
53 views

Parenthesis in apache web file name

I'm hosting an image server where my clients upload their photos for viewing by their customers later. We've migrated our site from a Windows server to Linux. Some of our clients are accustomed to ...
0
votes
0answers
62 views

Why is this page is not dropping my custom redirection - IIS 7.5

I have build custom redirection for both asp.net pages and other pages. Other pages are using IIS custom redirection page which i set from website IIS 404 error pages. asp.net pages are getting ...
2
votes
1answer
174 views

Caching 404s - NGINX or Varnished?

I'm looking for a solution to cache 404s in long term (a few days/weeks) on the webserver. My current setup is NGINX with memcached_pass proxy and PHP-FPM to deliver uncached pages (PHP also writes ...
3
votes
2answers
58 views

Numerous 404's for “alive.txt”, anybody know what that file could be?

Just wondering if there is any significance to the frequency. Lately our site has been getting notably more 404 errors for alive.txt than any other uri. Is this some kind of common server log/config ...
1
vote
0answers
134 views

Lighttpd: Subdomains give an 404 Error

Since the last days, all my subdomains doesn't work anymore. I get only an 404 Error/Placeholder page. I have not make any changes on my Lighttpd.conf or on the 10-simple-vhost.conf. Does have anyone ...
1
vote
1answer
164 views

Weird 404 issue with nginx 's.png'

This URL is invalid: http://mysite.co.uk/assets/images/whymysite/viewoptions.png However, if I replace the 's' at the end before .png, with ANY other standard character (that I've tried so far, it ...
2
votes
2answers
106 views

Why am I getting a 404 at the root domain of my website in IIS 6?

I have a client who setup SiteMinder on our server and I need to add a web app to the website directory that is the root of the domain. When they browse login.url.com it redirects them to their ...
1
vote
1answer
39 views

IP address of server returns 404

I have a server which hosts multiple domains. A couple of days ago I had to re-install apache, and after that typing the IP address in the browser returns a 404 error. I still can access all the sites ...
1
vote
1answer
259 views

404 .php page response nginx + php fpm

I just made a fresh install of a server with nginx with php5-fpm. Why if you visit a php page that doesn't exist you get a blank page instead of the default "not found" page of nginx? Shouldn't this ...
0
votes
1answer
144 views

Wordpress escaped encoded (hex) URL case sensitive problem

I have been experiencing a problem yesterday. My site is in Hebrew language. MY site is built on Wordpress. The problem is related to escaped encoded posts URL only. IF the post URL has escaped encode ...
1
vote
0answers
41 views

why does a \ at the end of a web address not show the custom 404 error page?

For example: [domain]/index.php works correctly: this displays the correct web page. [domain]/indlfjasd;lfjs.php works correctly in that it goes to a custom 404 error page--I have an .htaccess ...
0
votes
3answers
181 views

Apache: Redirect 404 and ErrorDocument 404 difference

I would like to do a 404 redirect with Apache, and I find several solutions: The .htaccess method. But I don't want to add a .htaccess if not necessary. virtual host method: <VirtualHost ...
0
votes
0answers
75 views

How to add .html extension in IIS 6?

For some reason I am getting 405 and 404 errors when trying to access .html files on my site. There is no .html extension listed in the Applicaiton extensions in the configuration panel of IIS. I ...
0
votes
1answer
133 views

Apache mod_rewrite to return a 404 except one directory

I'm trying to configure Apache to return a default 404 page when the / of DocumentRoot is called, except for some directories in that DocumentRoot Unfortunately, I'm getting a 404 even for the ...
1
vote
1answer
158 views

IIS website http ok but https cannot find resource (status code 404)

Afternoon, I publish an API on domainA.com and have done for several months. *http:/domainA.com/service.svc takes me to the resource (c:\inetput\wwwroot\api) *https://domainA.com/service.svc ...
0
votes
0answers
51 views

Lighttpd evhost doesn't use default docroot when directory can't be found

As documented, mod_evhost should just default to the server docroot when the directory for a domain doesn't exist. However, in my case, it is not doing so. When I access a URL without a directory in ...
3
votes
2answers
2k views

Attempted access to web server

In the list of 404 errors on my web server I keep finding attempted accesses to /admin/Y-ivrrecording.php, /admin/cdr/counter.txt, /modules/extensions_batch/libs/download_csv.php or /c0nfig(!). I ...
1
vote
1answer
124 views

How can I make Tomcat 6 show the real error instead of a 404?

For deploying and troubleshooting an application, getting 404s has little use. I have deployed applications that report no issue in the logs but return 404s. There IS an error in the application as ...
0
votes
1answer
192 views

nginx PHP files 404

I am getting 404 not found on php files with my nginx/php-fastcgi install. I have tried several variations of declaring root in different places but cant find one that works, and I suspect this is ...
3
votes
1answer
101 views

Nameserver Issue?

I have a domain registered with active-domain.com and yesterday I changed my nameservers to my host, but then I decided to switch my host at the last minute and changed them again. Now, 24 hours or so ...
1
vote
1answer
306 views

redmine gives 404 error after installation

Hi i am using debian squeeze with nginx and mysql. After raking db and loading default data to redmine. When i try to visit redmine in url http://ipaddress:8080/redmine i get a 404 error Page ...
1
vote
1answer
47 views

IP's requesting long gone files

I released an app almost a year ago that worked by requesting data from some php scripts on my server. That app no longer does this and the php files have been removed. Yet several people still have ...

1 2 3