Skip to content

Commit e562d9e

Browse files
committed
Archive CADjs source code from ERSL
1 parent 7bcfb2d commit e562d9e

File tree

214 files changed

+514344
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+514344
-1
lines changed

.htaccess

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Use PHP5.4 as default
2+
AddHandler application/x-httpd-php54 .php

400.shtml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<html><head><title>400 Bad Request</title></head>
2+
<body bgcolor=white>
3+
<h1>400 Bad Request</h1>
4+
5+
Invalid request.
6+
7+
</body></html>

401.shtml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<html><head><title>401 Authorization Required</title></head>
2+
<body bgcolor=white>
3+
<h1>401 Authorization Required</h1>
4+
5+
Invalid login credentials!
6+
7+
</body></html>

403.shtml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<html><head><title>403 Permission Denied</title></head>
2+
<body bgcolor=white>
3+
<h1>403 Permission Denied</h1>
4+
5+
You do not have permission for this request <!--#echo var="REQUEST_URI" -->
6+
7+
</body></html>

404.shtml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<!-- SHTML Wrapper - 404 Not Found -->
2+
<!--#exec cgi="/cgi-sys/fourohfour.cgi" -->

500.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!-- PHP Wrapper - 500 Server Error -->
2+
<html><head><title>500 Server Error</title></head>
3+
<body bgcolor=white>
4+
<h1>500 Server Error</h1>
5+
6+
A misconfiguration on the server caused a hiccup.
7+
Check the server logs, fix the problem, then try again.
8+
<hr>
9+
10+
<?
11+
echo "URL: http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']."<br>\n";
12+
$fixer = "checksuexec ".escapeshellarg($_SERVER['DOCUMENT_ROOT'].$_SERVER['REQUEST_URI']);
13+
echo `$fixer`;
14+
?>
15+
16+
</body></html>

500.shtml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<!-- SHTML Wrapper - 500 Server Error -->
2+
<!--#exec cgi="/500.php" -->

0 commit comments

Comments
 (0)