Skip to content

Commit

Permalink
Upload
Browse files Browse the repository at this point in the history
  • Loading branch information
gigamaster committed Oct 22, 2019
1 parent fd6aa1f commit e1b2456
Show file tree
Hide file tree
Showing 997 changed files with 217,350 additions and 2 deletions.
53 changes: 51 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,51 @@
# xoopserver
wamp
# XOOPServer

![XOOPServer 5](xoopserver5.jpg)

## Introduction

Design a web application, and a web site, requires you to take the jump from client-side technologies like HTML/CSS/Javascript, to server-side technologies like PHP. In order to successfully develop in this language, you need the ability to test your work before you launch it into the public domain of the Internet. You have to set up your own web server on your local PC, using freely downloadable software. The combination to work with Apache, MySQL and PHP allows development and testing on a local machine without the concerns of a consistent Internet connection.

## About XOOPServer

:computer: XOOPServer is a portable Windows Apache, MySQL, PHP and phpMyAdmin with required extensions to run and test locally XOOPS Cube Legacy Distributions (Web Application Platform and Modular Architecture Content Management System).

![XOOPServer 5 Screenshot](xoopserver_screenshot.jpg)

- Apache/2.0.59 (Win32)
- MySQL 5.0.45
- phpMyAdmin - 2.11.0
- PHP/5.2.5

### Environment and PHP Variables

- Server Name : localhost
- Server Adrr : 127.0.0.1
- Server Port : 80
- Document Root : W:/www
- Database User : root
- Database Pass :
- Gateway Interface : CGI/1.1
- Server Protocol: HTTP/1.1

## Installation

- Download XOOPServer archive
- Unzip to your drive
- Launch xoopserver.exe

:warning: **On Windows request: Allow Apache and MySQL**

### Note
:memo: A portable application does not leave its files or settings on the host computer or modify the existing system and its configuration.
:information_source: The server requires port 80.
If you have troubles, check if Skype, Firewall or an antivirus is not prevent server execution.


## Credits

:bust_in_silhouette: Mikhail Miguel

### Backup Google Code Archive SVN

https://code.google.com/archive/p/xoopserver/
42 changes: 42 additions & 0 deletions cgi-bin/cgienv.cgi
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#!/usr/local/perl/perl.exe

sub Constant_HTML {
local(*FILE); # filehandle
local($file); # file path
local($HTML); # HTML data

$file = $_[0] || die "There was no file specified!\n";

open(FILE, "<$file") || die "Couldn't open $file!\n";
$HTML = do { local $/; <FILE> }; #read whole file in through slurp #mode (by setting $/ to undef)
close(FILE);

return $HTML;
}

$themeheader = &Constant_HTML('/home/admin/www/plugins/themeheader.html');

$themefooter = &Constant_HTML('/home/admin/www/plugins/themefooter.html');

sub urldecode{
local($val)=@_;
$val=~s/\+/ /g;
$val=~s/%([0-9A-H]{2})/pack('C',hex($1))/ge;
return $val;
}
print "Content-Type: text/html\n\n";

print "$themeheader\n";

print "<div class=\"centerCblockTitle\">XOOPSERVER CGI</div>\n";
print "<table class=\"outer\">\n";
print "<tr><th colspan=\"2\">Environment Variables</th></tr>\n";


foreach $env_var (keys %ENV){
print "<tr><td class=\"head\">$env_var</td><td class=\"even\">$ENV{$env_var}</td></tr>\n";

}
print"</table>\n";

print "$themefooter\n";
Binary file added home/admin/www/images/bg_blockcontent.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/bg_blocktitle.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/bg_cb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/bg_centerblockcontainer.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/bg_cltitle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/bg_crtitle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/bg_footer.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/bg_hbar.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/bg_nav.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/bg_navtab.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/bg_page.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/bug.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/doc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/hd.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/help.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/important.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions home/admin/www/images/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<script>history.go(-1);</script>
Binary file added home/admin/www/images/info.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/modules.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/news.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/package.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/plugin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/project.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/top.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/tracker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/admin/www/images/xc_legacy.jpg
Binary file added home/admin/www/images/xcl_d3_modules.jpg
112 changes: 112 additions & 0 deletions home/admin/www/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="content-script-type" content="text/javascript" />
<meta http-equiv="content-language" content="en" />
<meta name="robots" content="all" />
<meta name="keywords" content="XOOPS Cube" />
<meta name="description" content="XOOPS Cube" />
<meta name="rating" content="general" />
<meta name="author" content="Nuno Luciano" />
<meta name="copyright" content="XOOPS Cube 2008" />
<meta name="generator" content="XOOPS Cube" />
<!--
XOOPS Cube :: XOOPSERVER 5
Nuno Luciano aka da/gigamaster
http://xoopserver.com
31-10-2008
-->
<title>XOOPS Cube :: XOOPSERVER 5</title>
<link rel="stylesheet" type="text/css" media="screen" href="http://localhost/a/style.css" />
</head>
<body>
<div id="layout">
<a name="top" id="top"></a>
<div id="header" style="text-align:right; color:#99CCFF;">
<span class="headerlogo"><a href="http://localhost/"><img src="images/logo.png" alt="XOOPS Cube :: XOOPSERVER" /></a></span>
<span class="version">XOOPSERVER 5 Release 31-10-2008</span>
</div>
<div class="headerbar">
<ul id="navigation">
<li><a href="http://localhost/"><span>Localhost</span></a></li>
<li><a href="http://localhost/a/phpmyadmin/"><span>phpMyAdmin</span></a></li>
<li><a href="http://localhost/a/phpenv.php"><span>PHP Info</span></a></li>
<li><a href="http://localhost/cgi-bin/cgienv.cgi"><span>Configuration</span></a></li>
<li><a href="http://localhost/a/readme.html"><span>About</span></a></li>
</ul>
<div class="floatClear"></div>
</div>
<div id="container" class="clearfix">
<div id="main2columns">
<div id="content">
<h2>You are running XOOPSERVER 5 successfully !</h2>
<br />
<h4>XOOPSERVER 5 is a portable WAMP (Windows Apache MySQL and PHP) solution to experiment XOOPS Cube.</h4>
<h4>You can read more about <a href="http://xoopserver.com">XOOPSERVER</a> or get into action selecting a <a href="http://xoopscube.org">XOOPS Cube package to download</a>.</h4>
<p>&nbsp;</p>
<br />
<p><img src="images/hd.jpg" alt="hd " width="241" height="222" /><img src="images/xc_legacy.jpg" alt="legacy" width="232" height="222" /><img src="images/xcl_d3_modules.jpg" alt="d3" width="200" height="234" /></p>
</div>
</div>
<div id="side">
<div class="leftblock">
<div class="leftblockTitle">XOOPS Cube Project</div>
<div class="leftblockContent">
<ul id="projectLinks">
<li><a class="Project" href="http://sourceforge.net/projects/xoopscube/" title="Project Homepage">Project at Sourceforge</a></li>
<li><a class="Download" href="http://sourceforge.net/project/showfiles.php?group_id=159211" title="Download">Download Packages</a></li>
<li><a class="Modules" href="http://xoopscube.org/">Modules Compatibility</a></li>
<li><a class="Doc" href="http://xoopscube.wiki.sourceforge.net/" title="Documentation">Documentation Wiki</a></li>
<li><a class="Forum" href="http://sourceforge.net/forum/?group_id=159211" title="Forums">Development Forum</a></li>
<li><a class="Tracker" href="http://sourceforge.net/tracker/?group_id=159211" title="Tracker">Bug Tracker</a></li>
</ul>
</div>
</div>
<div class="leftblockTitle">XOOPSERVER 5</div>
<div class="leftblockContent">
<br />
<ul>
<li>Apache/2.0.59 (Win32)</li>
<li>MySQL 5.0.45</li>
<li>PHP/5.2.5</li>
<li>phpMyAdmin - 2.11.0</li>
</ul>
<br />
</div>
</div>
</div>
</div>
<div id="centerBlocks">
<div id="centerBlocksContainer">
<div class="centerLcolumn">
<div class="centerLblock">
<div class="centerLblockTitle">XOOPS Cube Legacy Distributions</div>
<div class="centerLblockContent">
<p>XOOPS Cube is a minimalist core with main classes and Legacy </p>
<p>is one of base modules to ensure compatibility with Xoops 2.</p>
<p>HD Distribution is released by a team of skilled programmers.</p>
<p>Legacy D3 Modules features various packages alike UNMG-D3</p>
</div>
</div>
</div>
<div class="centerRcolumn">
<div class="centerRblock">
<div class="centerRblockTitle">XOOPS Cube Package Installation</div>
<div class="centerRblockContent">
<p>1. Download a package of a XOOPS Cube distribution</p>
<p>2. Unzip files to : W:/xoopserver/www/packagename/</p>
<p>3. Launch phpMyAdmin to create a Database</p>
<p>&nbsp;&nbsp;&nbsp;or browse to : <a href="http://localhost/a/phpmyadmin/">http://localhost/a/phpmyadmin/</a></p>
</div>
</div>
</div>
<div class="floatClear" /></div>
</div>
<br class="floatClear" />
<div id="footerbar"><a href="http://localhost/">Localhost</a> | <a href="http://localhost/">phpMyAdmin</a> | <a href="http://localhost/a/phpenv.php">PHP Info</a> | <a href="http://localhost/cgi-bin/cgienv.cgi">Configuration</a> | <a href="http://localhost/phpinfo/">About</a><span><a href="#top"><img src="images/top.gif" alt="top" title="top" hspace="15" /></a></span> <br />
<a href="http://xoopscube.com.br/">Brasilian</a> | <a href="http://xoopscube.org/">English</a> | <a href="http://xoopscube.fr/">French</a> | <a href="http://www.xoopscube.de/">German</a> | <a href="http://www.xoopscube.gr/">Greek</a> | <a href="http://xoopscube.jp/">Japanese</a> | <a href="http://www.xoops.ne.kr/xoopscube/">Korean</a> | <a href="http://www.xoopscube.ru/">Russian</a> | <a href="http://www.xoopscube.tw/">T-Chinese</a><br />
Powered by <a href="http://xoopserver.com" target="_blank">Xoopserver</a> and XOOPS Cube &copy; 2001-2008 <a href="http://xoopscube.sourceforge.net/" target="_blank">The XOOPS Cube Project</a>
</div>
</body>
</html>
Loading

0 comments on commit e1b2456

Please sign in to comment.