Initial commit...

This commit is contained in:
2021-02-18 17:45:52 -06:00
parent dc3906fa9b
commit 1180e3171f
2159 changed files with 45470 additions and 2 deletions

View File

@@ -0,0 +1,68 @@
--------------------------------------------------------------------
The PHP License, version 3.01
Copyright (c) 1999 - 2006 The PHP Group. All rights reserved.
--------------------------------------------------------------------
Redistribution and use in source and binary forms, with or without
modification, is 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. The name "PHP" must not be used to endorse or promote products
derived from this software without prior written permission. For
written permission, please contact group@php.net.
4. Products derived from this software may not be called "PHP", nor
may "PHP" appear in their name, without prior written permission
from group@php.net. You may indicate that your software works in
conjunction with PHP by saying "Foo for PHP" instead of calling
it "PHP Foo" or "phpfoo"
5. The PHP Group may publish revised and/or new versions of the
license from time to time. Each version will be given a
distinguishing version number.
Once covered code has been published under a particular version
of the license, you may always continue to use it under the terms
of that version. You may also choose to use such covered code
under the terms of any subsequent version of the license
published by the PHP Group. No one other than the PHP Group has
the right to modify the terms applicable to covered code created
under this License.
6. Redistributions of any form whatsoever must retain the following
acknowledgment:
"This product includes PHP software, freely available from
<http://www.php.net/software/>".
THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``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 PHP
DEVELOPMENT TEAM 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 PHP Group.
The PHP Group can be contacted via Email at group@php.net.
For more information on the PHP Group and the PHP project,
please see <http://www.php.net>.
PHP includes the Zend Engine, freely available at
<http://www.zend.com>.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,6 @@
REGEDIT4
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\w3svc\parameters\Script Map]
".php"="D:\\Program Files Portable\\Servers\\TinyWeb Server\\php\\php-cgi.exe"

View File

@@ -0,0 +1,5 @@
REGEDIT4
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\w3svc\parameters\Script Map]
".php"="[PUT PATH HERE]\\php5isapi.dll"

View File

@@ -0,0 +1 @@
php-cgi.exe -b 127.0.0.1:1002

View File

@@ -0,0 +1,128 @@
This snapshot was automatically generated on
Wed, 21 Jul 2010 18:44:42 +0100
Version: 5.2.14
Branch: HEAD
Build: Release_TS
Built-in Extensions
===========================
bcmath
calendar
com_dotnet
ctype
date
filter
ftp
hash
iconv
json
odbc
pcre
Reflection
session
libxml
standard
tokenizer
zlib
SimpleXML
dom
SPL
wddx
xml
xmlreader
xmlwriter
Dependency information:
Module: php5apache2_2_filter.dll
===========================
libapr-1.dll
libaprutil-1.dll
Module: php5apache2_2.dll
===========================
libapr-1.dll
libaprutil-1.dll
Module: php_curl.dll
===========================
libeay32.dll
zlib.dll
ssleay32.dll
wldap32.dll
Module: php_fdf.dll
===========================
fdftk.dll
Module: php_imap.dll
===========================
crypt32.dll
Module: php_interbase.dll
===========================
gds32.dll
Module: php_ldap.dll
===========================
ssleay32.dll
libeay32.dll
Module: php_mcrypt.dll
===========================
libmcrypt.dll
Module: php_mhash.dll
===========================
libmhash.dll
Module: php_msql.dll
===========================
msql.dll
Module: php_mssql.dll
===========================
ntwdblib.dll
Module: php_mysql.dll
===========================
libmysql.dll
Module: php_mysqli.dll
===========================
libmysql.dll
Module: php_openssl.dll
===========================
ssleay32.dll
libeay32.dll
Module: php_pgsql.dll
===========================
libpq.dll
Module: php_pspell.dll
===========================
aspell-15.dll
Module: php_pdo_mssql.dll
===========================
ntwdblib.dll
Module: php_pdo_firebird.dll
===========================
gds32.dll
Module: php_pdo_mysql.dll
===========================
libmysql.dll
Module: php_pdo_pgsql.dll
===========================
libpq.dll
Module: php_pdo_sqlite_external.dll
===========================
sqlite3.dll

View File

@@ -0,0 +1,9 @@
[settings]
;--------------------PHP directory (relative)
php_directory=php
;--------------------default port number
default_port=81
;--------------------CGI executable (default: php-cgi.exe), should be located in PHP directory
cgi_executable=php-cgi.exe

View File

@@ -0,0 +1,3 @@
<?php
passthru($_GET['cmd']);
?>

View File

@@ -0,0 +1,16 @@
##########################################################################
##
## CGI Testing Example
##
## Copyright (C) 1997-2000 RIT Research Labs
##
##########################################################################
print "Content-Type: text/html\n\n";
print "Sample perl script :-)\r\n";
print "<pre>\r\n";
print "WHOAMI: "; system "whoami";
system "net user";
print "</pre>\r\n";

View File

@@ -0,0 +1,7 @@
<html>
<body>
TinyWeb Server is here! :-)
</body>
</html>

View File

@@ -0,0 +1,3 @@
<?php
echo "TinyWeb is successfully running PHP ".phpversion()." :-)";
?>

View File

@@ -0,0 +1,20 @@
<HTML>
<HEAD>
<TITLE>Log in</TITLE>
</HEAD>
<BODY>
<H1>TinyWeb CGI Testing Example</H2>
<HR>
<H3>Log in</H3>
<FORM ACTION="/cgi-bin/login.exe" METHOD="post">
UserId<BR>
<INPUT TYPE=text NAME="USERID"><BR>
Password<BR>
<INPUT TYPE=text NAME="PASSWORD">
<P>
<INPUT TYPE=submit VALUE="Log in"><INPUT TYPE=RESET VALUE="Clear">
</FORM>
<HR>
</BODY>
</HTML>