Advertisement
Advertisement
| 05.16.2008 at 01:36AM PDT, ID: 23407640 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 05.16.2008 at 01:50AM PDT, ID: 21580963 |
| 05.16.2008 at 01:51AM PDT, ID: 21580977 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: |
#!/usr/bin/perl
##################################################################################
# Server Test v2.1 22/August/2003
# © 2003 http://www.Form2Email.co.uk/
##################################################################################
# Form2Email.co.uk © 1999 - 2004 Copyright #
# The scripts are available for private and commercial use. #
# You can use the scripts in any website you build. #
# It is prohibited to sell the scripts in any format to anybody. #
# The scripts may only be distributed by Form2Email.co.uk #
# The redistribution of modified versions of the scripts is prohibited. #
# Form2Email.co.uk accepts no responsibility or liability #
# whatsoever for any damages however caused when using our services or scripts. #
# By downloading and using this script you agree to the terms and conditions. #
##################################################################################
# Upload this script into the directory you are going to use for the script
# CHMOD this 755 or 777 if not public
# Run the script by typing the URL in your browser
# You should now see your PATH and URL information
##################################################################################
print "Content-type: text/html\n\n";
print "<html>\n" ;
print "\n" ;
print "<head>\n" ;
print "<title>$ENV{'SERVER_NAME'} EZscripting.co.uk Server Test</title>\n" ;
print "</head>\n" ;
print "\n" ;
print "<body bgcolor=\"#FFFFFF\" text=\"#000000\" link=\"#000000\" vlink=\"#000000\" alink=\"#000000\">\n" ;
print "\n" ;
print "<center><font face=Verdana size=3><b><br>\n" ;
print "EZscripting.co.uk CGI Help Script</b></center>\n" ;
print "<font face=Verdana size=2><b><br><br>\n" ;
print "Path and URL information:</b><br><br>\n" ;
print "Your path to Perl is correct<br>\n" ;
print "Your server is running Perl version: $]<br>\n" ;
print "Your domain name is: $ENV{'SERVER_NAME'}<br>\n" ;
print "The complete system PATH to this script is: $ENV{'SCRIPT_FILENAME'}<br>\n" ;
print "The URL of this script is: http://$ENV{'SERVER_NAME'}$ENV{'SCRIPT_NAME'}<br>\n" ;
print "</body>\n" ;
print "</html>\n" ;
##################################################################################
# Form2Email.co.uk © 1999 - 2004 Copyright #
# The scripts are available for private and commercial use. #
# You can use the scripts in any website you build. #
# It is prohibited to sell the scripts in any format to anybody. #
# The scripts may only be distributed by Form2Email.co.uk #
# The redistribution of modified versions of the scripts is prohibited. #
# Form2Email.co.uk accepts no responsibility or liability #
# whatsoever for any damages however caused when using our services or scripts. #
# By downloading and using this script you agree to the terms and conditions. #
##################################################################################
|
| 05.16.2008 at 02:24AM PDT, ID: 21581178 |
| 05.16.2008 at 04:43AM PDT, ID: 21581836 |
| 05.18.2008 at 01:49PM PDT, ID: 21593978 |
| 05.18.2008 at 01:54PM PDT, ID: 21593990 |
| 05.18.2008 at 02:08PM PDT, ID: 21594039 |
| 05.18.2008 at 02:18PM PDT, ID: 21594073 |
| 05.19.2008 at 11:09AM PDT, ID: 21600104 |