Go Back   HostGator Peer Support Forums > Public Forums > Suggestions

Notices

Reply
 
Thread Tools
  #1  
Old 09-24-2003, 07:11 AM
abstraktMedia's Avatar
abstraktMedia abstraktMedia is offline
Junior Croc
 
Join Date: Aug 2003
Location: Ljutomer, Slovenia
Posts: 131
Default

Would be nice to see a link to phpinfo.php with
[code:1:ad74ed3f5f]<?php
phpinfo();
?>
[/code:1:ad74ed3f5f]

so future customers can see the phpVersion + all the other details....(MySQL ver,modules installed etc...)

Just a suggestion...

:lol:
__________________
Reply With Quote
  #2  
Old 04-30-2004, 07:37 PM
mediahosting's Avatar
mediahosting mediahosting is offline
Hatchling Croc
 
Join Date: Feb 2004
Location: Oregon
Posts: 28
Default

Here is the code for a breakdown of all paths. Helps us scripters.

Just put this code into a file, with extension .pl , the place it in the CGI-BIN directory and make permissions "755".

Once uploaded, just type in the absolute path where the file is located. You will see everything to wanted to ever know about your servers info.

#!/usr/bin/perl

##
# Show CGI Process Environment
##
# This perl program shows you how to access the process environment
# for CGI programs on your web server.
# It is also a useful debugging tool, as it shows you all of the
# available environment variables.
##

exit unless ($ENV{'REQUEST_METHOD'} eq "GET");

# CGI programs must print their own HTTP response headers
print "Content-type: text/html\n\n";

# Declare the SGML application as HTML
print "<!doctype html public \"-//W3C/DTD HTML 4.0/EN\">\n";

# Begin HTML
print "<html>\n";

# A minimal document must include a header region with a title
print "<head>\n".
"<title>CGI Process Environment</title>\n".
"</head>\n\n";

# Start document body
print "<body>\n\n";

# Put values in a table for readability
print "<table border>\n\n";

# Caption the table
print " <caption>CGI Process Environment</caption>\n\n";

# Include table headers
print " <tr>\n".
" <th align=\"left\">\n".
" Variable\n".
" </th>\n".
" <th>\n".
" Value\n".
" </th>\n".
" </tr>\n";

# Print each key/value pair as two column in a row
while (($var, $val) = each %ENV)
{
# Quote special HTML characters
$var =~ s/&/&/g; $var =~ s/</</g; $var =~ s/>/>/g;
$val =~ s/&/&/g; $var =~ s/</</g; $val =~ s/>/>/g;

print "\n".
" <tr>\n".
" <td align=\"left\">\n".
" ".splitstring($var,30)."\n". # Wrap variable names at 30 chars
" </td>\n".
" <td>\n".
" <code>".splitstring($val,80)."</code>\n". # Wrap variable values at 80 chars
" </td>\n".
" </tr>\n";
}
print "\n";

# End table
print "</table>\n\n";

# End document body
print "</body>\n";

# End HTML
print "</html>\n";

exit 0;

##
# The contents of variables should be split with a whitespace around every
# 80-100 chars when the length of the content is really larger then 80-100
# chars _and_ no whitespaces are contained.
##

sub splitstring {
my ($str, $col) = @_;

my $out = '';
while ($str ne '')
{
if (length($str) <= $col) {
$out .= $str;
last;
}

my $sep = rindex($str, " ", $col);
$sep = rindex($str, " ", $col) if ($sep == "\t");
if ($sep == -1) {
my $prefix = substr($str, 0, $col);
$str = substr($str, $col);
$out .= "$prefix—<br>";
}
elsif ($sep == 0) {
my $prefix = substr($str, 0, 1);
$str = substr($str, 1);
$out .= "$prefix";
}
else {
my $prefix = substr($str, 0, $sep);
$str = substr($str, $sep);
$out .= "$prefix<br>";
}
}
return $out;
}

__END__

## Copyright (c) 1998 The Apache Group. All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted provided that the following conditions
## are met:
##
## 1. Redistributions of source code must retain the above copyright
## notice, this list of conditions and the following disclaimer.
##
## 2. Redistributions in binary form must reproduce the above copyright
## notice, this list of conditions and the following disclaimer in
## the documentation and/or other materials provided with the
## distribution.
##
## 3. All advertising materials mentioning features or use of this
## software must display the following acknowledgment:
## "This product includes software developed by the Apache Group
## for use in the Apache HTTP server project (http://www.apache.org/)."
##
## 4. The names "Apache Server" and "Apache Group" must not be used to
## endorse or promote products derived from this software without
## prior written permission. For written permission, please contact
## apache@apache.org.
##
## 5. Products derived from this software may not be called "Apache"
## nor may "Apache" appear in their names without prior written
## permission of the Apache Group.
##
## 6. Redistributions of any form whatsoever must retain the following
## acknowledgment:
## "This product includes software developed by the Apache Group
## for use in the Apache HTTP server project (http://www.apache.org/)."
##
## THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY
## EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
## PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE GROUP OR
## ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
## NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
## LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
## STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
## ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
## OF THE POSSIBILITY OF SUCH DAMAGE.
## ================================================== ==================
##
## This software consists of voluntary contributions made by many
## individuals on behalf of the Apache Group and was originally based
## on public domain software written at the National Center for
## Supercomputing Applications, University of Illinois, Urbana-Champaign.
## For more information on the Apache Group and the Apache HTTP server
## project, please see <http://www.apache.org/>.
##

Host Gator you should add this to all accounts so that people have a file like this to refer to, easy information that is very helpful.

- Kris Parker
Media Hosting
Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Php 5 abstraktMedia Suggestions 14 12-22-2004 08:14 AM
[Closed] PHP Problem nate_s_ Shared Hosting Support 3 06-07-2004 03:48 PM
PHP info zricz Webhosting 2 05-27-2004 12:21 AM
php modules experor Customer Reviews 0 05-14-2004 02:27 AM
Disabling PHP magic_quotes_gpc mmc Webhosting 1 04-14-2004 12:56 PM

All times are GMT -6. The time now is 12:16 PM.