My file keeps getting deleted!

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>

From this article:

https://infinityfree.net/support/why-are-my-files-deleted-after-uploading/

The file is a HTML or PHP file larger than 1 MB

In addition to the general file size limit, there is a limit of 1 MB for HTML and PHP files. Any HTML or PHP code file larger than this will automatically be deleted after uploading it.

Depending on the contents of your PHP/HTML file, you may be able to reduce the file size in one of the following ways:

  • If you have a large amount of CSS and Javascript code in the file, consider moving this code to separate files and linking them from the same page. This will also help speed up your website, because separate CSS and Javascript files can be cached more effectively.
  • If the HTML page contains a lot of data to be displayed to visitors, you may be able to move this data to separate text files or a MySQL or SQLite database which can be queried from PHP.
  • If the file contains a lot of PHP code, you may be able to move some of this code to separate files, and use PHP include or require directives to combine the code in a single process. This also makes it easier to reuse code across multiple pages, and generally makes it easier to read and understand.
  • If the file contains a lot of HTML code, you can also use PHP include or require directives to combine multiple HTML files, like headers and footers, into a single page. However, note that having a very large HTML page means it may be very slow to load for people and use a lot of bandwidth, which is bad for (mobile) users. So you may also wish to consider to restructure your website so spread the content over multiple, specific pages.
3 Likes

Oh, the file is too big.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.