Added a php file to my website now it wont load

Username (e.g. epiz_XXX) or Website URL

obscure.gq

Error Message

I added a .php file to my website file manager and put the script in my html (i have recently deleted it) but ever since then

Other Information

(other information and details relevant to your question)

Accidently pressed enter so redoing it here

Username (e.g. epiz_XXX) or Website URL

obscure.gq

Error Message

I added a .php file to my website file manager and put the script in my html (i have recently deleted it) but ever since then my website cant be accessed (https://i.imgur.com/NEnUoaC.png)
please help me

Follow this guide…

Username (e.g. epiz_XXX) or Website URL

https://www.obscure.gq

Error Message

I added a .php file to my website file manager and put the script in my html (i have recently deleted it) but ever since then my website cant be accessed (https://i.imgur.com/NEnUoaC.png)
please help me

imma be honest i added a php ip logger to troll my friend

the code:
Code:

<script language="JavaScript type="text/javascript" src=http://YOURSITE.COM/log.php"></script>
<script type="text/javascript" src="http://javascripthost.com/scripts/logupdate.js"></script>

log.php :

Code:

<?php
$logfile= 'info.html';
$IP = $_SERVER['REMOTE_ADDR'];
$logdetails=  date("F j, Y, g:i a") . ': ' . '<a target=_blank href=http://www.dnsstuff.com/tools/ipall.ch?domain='.$_SERVER['REMOTE_ADDR'].'>'.$_SERVER['REMOTE_ADDR'].'</a>';
$rc = fopen($logfile, "a"); 
fwrite($rc, $logdetails);
fwrite($rc, "<br />_____ Provided by JavaScripthost.com _____");
fwrite($rc, "<br>");
fclose($rc); 
?>

i regret doing this because now i can’t even get on my website

I merged your topics. Next time, if your website doesn’t work, please don’t create multiple topics each with a different hypothesis about why the issue happens. Let’s keep a single issue in a single topic, it doesn’t help anyone if the information is strewn about multiple topics.

As for the issue itself, it’s probably because you have invalid nameservers for your domain. Please remove the invalid nameservers (and next time, just use the nameservers we tell you to use instead of coming up with nameservers yourself):

3 Likes

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