• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Resource Not Found?

Evan

A splendid one to behold
Senator
Premium User
Joined
May 6, 2009
Messages
7,019
Solutions
1
Reaction score
1,029
Location
United States
I'm trying to show my friend my website and it's not letting him or me view it.

I am using my own IP-address. (dashed out for security, but it is correct)
http://--.---.--.---/index-1.php
When he and I type this into our browser, we can an error called "Resource Not Found".

But, when I use localhost address, it works fine.
http://localhost/index-1.php

Does anyone know what is wrong?
Do I need to open a specific port?

USING XAMPP.
 
Naw, index-1.php is correct.

And yeah, I have port 80 open... :(
Still not getting any access.

It even happens to me...
 
I'm not using any AAC, it's got no relation to OpenTibia, it's just a PHP code.

If you care, here it is:

index-1.php:
PHP:
<?php
session_start();
if(isset($_POST['submit'])){
$number = $_POST['number'];
if ($number == "elephant"){
$_SESSION['question'] = 2;
header("Location: http://71.227.16.130/index-1.php");
exit();}
}
?> 
<html>
 <head>
  <title>PHP Test</title>
 </head>
 <b>LEVEL 1</b>
 <body>
 <p>
<font face="Courier New">c291cmNl</font>
</p>
 <br/></body>
</html>
<form action="<?php echo $_SERVER['PHP_SELF'];?>" method="post">
  Answer: <input type="text" name="number" /><br />
</select>
<input name="submit" type="submit">
</form>
 
Back
Top