Apache sometimes displays 404 errors on existing files and doesn't log themWhy is @font-face throwing a 404 error on woff files?Where does PHP store the error log? (php5, apache, fastcgi, cpanel)How to use Curl to post data to a script and save the file that is returnedBots throws 500 error in apache access logRails controller - handle 404 and respond with dynamic HTML error page regardless of request formatApache is downloading php files instead of displaying themSet web server handle 404 errors for some file types using .htaccess (ErrorDocument 404 + rewrite rules)Localhost htaccess not workingHow 404 page will workFresh Laravel 5.4 on Linux Apache server keeps redirecting itself

Distinguish the explanations of Galadriel's test in LotR

What are the consequences for a developed nation to not accept any refugees?

Computer name naming convention for security

Is there a method for differentiating informative comments from commented out code?

What was this character's plan?

What is a writing material that persists forever or for a long time?

Novel with societal breakdown and spaceship passengers marooned on a planet covered with a city

VHDL: is there a way to create an entity into which constants can be passed?

Can a UA Lore Mastery wizard use the Spell Secrets or Alchemical Casting features to modify spells cast through wands or staffs?

Is it possible for a character at any level to cast all 44 Cantrips in one week without Magic Items?

What happens to unproductive professors?

What was the profession 芸者 (female entertainer) called in Germany?

What could cause the sea level to massively decrease?

Why does the Antonov AN-225 not have any winglets?

Shrinking padding of node with label options

OpenGL tile map rendering with 1 quad for all tiles and 1 texture atlas

How do ballistic trajectories work in a rotating cylinder world?

How to get the right toolbar back on Inkscape? It's disappeared

When I press the space bar it deletes the letters in front of it

How to configure apt in Debian Buster after release

Why does Trump want a citizenship question on the census?

Why won't the U.S. sign a peace treaty with North Korea?

Why do airports remove/realign runways?

Why AI became applicable only after Nvidia's chips were available?



Apache sometimes displays 404 errors on existing files and doesn't log them


Why is @font-face throwing a 404 error on woff files?Where does PHP store the error log? (php5, apache, fastcgi, cpanel)How to use Curl to post data to a script and save the file that is returnedBots throws 500 error in apache access logRails controller - handle 404 and respond with dynamic HTML error page regardless of request formatApache is downloading php files instead of displaying themSet web server handle 404 errors for some file types using .htaccess (ErrorDocument 404 + rewrite rules)Localhost htaccess not workingHow 404 page will workFresh Laravel 5.4 on Linux Apache server keeps redirecting itself






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I run a website at an external webhoster (Strato). From time to time, my users (including me) get 404 errors, that



  • occur on existing files (the error is gone at the next try)

  • don't show the modified Error-Pages I configured in the .htaccess files

  • don't show up in Apache's accesslog (provided by my webhoster).

It's just random (estimating 1 out of 500). Does anyone have an idea what this could be? I use PHP 7.2.15.



Code of error site:



<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /url.php was not found on this server.</p>
</body></html>









share|improve this question
























  • its possible your host has load balancing or proxies set up, this could be causing the issue if a load balanced server has not yet synchronised data.

    – Chris
    Mar 25 at 23:26












  • I couldn't find any information about that in my webspace at Strato's. But I've also suspected them to misconfigure something. Unfortunately, at support they only told me it's "faulty programming inside of my website" and referred to the logfiles (where the error doesnt appear) :/

    – Ethelion1
    Mar 26 at 21:43












  • But does that error you suggest also occur when I haven't changed any files the last hours?

    – Ethelion1
    Mar 26 at 21:45


















0















I run a website at an external webhoster (Strato). From time to time, my users (including me) get 404 errors, that



  • occur on existing files (the error is gone at the next try)

  • don't show the modified Error-Pages I configured in the .htaccess files

  • don't show up in Apache's accesslog (provided by my webhoster).

It's just random (estimating 1 out of 500). Does anyone have an idea what this could be? I use PHP 7.2.15.



Code of error site:



<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /url.php was not found on this server.</p>
</body></html>









share|improve this question
























  • its possible your host has load balancing or proxies set up, this could be causing the issue if a load balanced server has not yet synchronised data.

    – Chris
    Mar 25 at 23:26












  • I couldn't find any information about that in my webspace at Strato's. But I've also suspected them to misconfigure something. Unfortunately, at support they only told me it's "faulty programming inside of my website" and referred to the logfiles (where the error doesnt appear) :/

    – Ethelion1
    Mar 26 at 21:43












  • But does that error you suggest also occur when I haven't changed any files the last hours?

    – Ethelion1
    Mar 26 at 21:45














0












0








0


0






I run a website at an external webhoster (Strato). From time to time, my users (including me) get 404 errors, that



  • occur on existing files (the error is gone at the next try)

  • don't show the modified Error-Pages I configured in the .htaccess files

  • don't show up in Apache's accesslog (provided by my webhoster).

It's just random (estimating 1 out of 500). Does anyone have an idea what this could be? I use PHP 7.2.15.



Code of error site:



<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /url.php was not found on this server.</p>
</body></html>









share|improve this question
















I run a website at an external webhoster (Strato). From time to time, my users (including me) get 404 errors, that



  • occur on existing files (the error is gone at the next try)

  • don't show the modified Error-Pages I configured in the .htaccess files

  • don't show up in Apache's accesslog (provided by my webhoster).

It's just random (estimating 1 out of 500). Does anyone have an idea what this could be? I use PHP 7.2.15.



Code of error site:



<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /url.php was not found on this server.</p>
</body></html>






php apache http-status-code-404






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 29 at 23:17







Ethelion1

















asked Mar 25 at 23:12









Ethelion1Ethelion1

11 bronze badge




11 bronze badge












  • its possible your host has load balancing or proxies set up, this could be causing the issue if a load balanced server has not yet synchronised data.

    – Chris
    Mar 25 at 23:26












  • I couldn't find any information about that in my webspace at Strato's. But I've also suspected them to misconfigure something. Unfortunately, at support they only told me it's "faulty programming inside of my website" and referred to the logfiles (where the error doesnt appear) :/

    – Ethelion1
    Mar 26 at 21:43












  • But does that error you suggest also occur when I haven't changed any files the last hours?

    – Ethelion1
    Mar 26 at 21:45


















  • its possible your host has load balancing or proxies set up, this could be causing the issue if a load balanced server has not yet synchronised data.

    – Chris
    Mar 25 at 23:26












  • I couldn't find any information about that in my webspace at Strato's. But I've also suspected them to misconfigure something. Unfortunately, at support they only told me it's "faulty programming inside of my website" and referred to the logfiles (where the error doesnt appear) :/

    – Ethelion1
    Mar 26 at 21:43












  • But does that error you suggest also occur when I haven't changed any files the last hours?

    – Ethelion1
    Mar 26 at 21:45

















its possible your host has load balancing or proxies set up, this could be causing the issue if a load balanced server has not yet synchronised data.

– Chris
Mar 25 at 23:26






its possible your host has load balancing or proxies set up, this could be causing the issue if a load balanced server has not yet synchronised data.

– Chris
Mar 25 at 23:26














I couldn't find any information about that in my webspace at Strato's. But I've also suspected them to misconfigure something. Unfortunately, at support they only told me it's "faulty programming inside of my website" and referred to the logfiles (where the error doesnt appear) :/

– Ethelion1
Mar 26 at 21:43






I couldn't find any information about that in my webspace at Strato's. But I've also suspected them to misconfigure something. Unfortunately, at support they only told me it's "faulty programming inside of my website" and referred to the logfiles (where the error doesnt appear) :/

– Ethelion1
Mar 26 at 21:43














But does that error you suggest also occur when I haven't changed any files the last hours?

– Ethelion1
Mar 26 at 21:45






But does that error you suggest also occur when I haven't changed any files the last hours?

– Ethelion1
Mar 26 at 21:45













0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347707%2fapache-sometimes-displays-404-errors-on-existing-files-and-doesnt-log-them%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347707%2fapache-sometimes-displays-404-errors-on-existing-files-and-doesnt-log-them%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현