My website URL is: https://enderadel.net
What I’m seeing is: that my file keeps getting deleted by the server!
I’m using this software: The free hosting plan of InfinityFree, Cloudflare, Recaptcha
Additional information:
My file size is 1245 KB
My file name is EnderCheck.php
Here’s my file:
<?php
if(isset($_POST['g-recaptcha-response'])){
$response = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=MY_OWN_CODE&response=".$_POST['g-recaptcha-response']."&remoteip=".$_SETVER['REMOTE_ADDR']);
$response = json_decode($response);
if($response->success)
$V = "localStorage.RecaptchaResponse = \"true\";";
else
$V = "localStorage.RecaptchaResponse = \"false\";";
}else{
$V = "localStorage.RecaptchaResponse = \"Unknown\";";
}
?>
<!DOCTYPE html>
<html itemscope="" itemtype="http://schema.org/WebPage" lang="en-US" class="notranslate" data-gramm_editor="false">
<head>
...
<script>
<?php echo $V; ?>
</script>
...
</head>
<body>
...
</body>
</html>