tankman1989
Active Member
- Reaction score
- 5
I recently ran into a problem of determining the source of an error code from a Windows server. The host said the server was find and the developer said their code was fine. Here is some simple code that you can use to test the servers to ensure they are working. It would be a good idea for either a developer or a hosting provider to have access to these files for testing purposes.
Linux server testing file:
To create the file, open Notepad and paste the above text. Use the Save As feature and select "All Files (*.*)" from the "Save as Type" drop down menu. input "index.php" as the file name and save the file. Upload the file to the root folder of the domain and then open the domain in your browser. You will see a message that the server is working if the server is working properly.
Windows server testing file:
To create the file, open Notepad and paste the above text. Use the Save As feature and select "All Files (*.*)" from the "Save as Type" drop down menu. input "default.asp" as the file name and save the file. Upload the file to the root folder of the domain and then open the domain in your browser. You will see a message that the server is working if the server is working properly.
You can download the files here if you don't want to go through the creation step. Just rename the files on your machine or when you upload them to the server.
Windows Server Test File
Linux Server Test File
Linux server testing file:
Code:
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php echo '<p>The server is working.</p>'; ?>
</body>
</html>
Windows server testing file:
Code:
<%@ Language="VBScript" %>
<% Option Explicit %>
<!--- This page should display "ASP is working!" --->
<!--- if ASP is available to you. --->
<HTML>
<HEAD>
<TITLE>ASP is Working!</TITLE>
</HEAD>
<BODY>
<% Dim TestString %>
<% TestString = "The server is working properly" %>
<H1>
<% Response.Write TestString %>
</H1>
</BODY>
</HTML>
You can download the files here if you don't want to go through the creation step. Just rename the files on your machine or when you upload them to the server.
Windows Server Test File
Linux Server Test File