Skip to content

Commit fe66105

Browse files
author
Nick Pappas
committed
Merge pull request radicand#1 from inverse-inc/master
Fixes a few erroneous locations, statements, and missing setup steps.
2 parents 73302bb + adc3e71 commit fe66105

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.htaccess

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
-e Options FollowSymLinks
2-
-e php_flag register_globals off
3-
-e php_flag register_long_arrays on
4-
-e AddType application/x-x509-ca-cert .crt .pem
5-
-e AddType application/pkix-crl .crl
6-
-e AddType application/pkix-cert .cer .der
1+
Options FollowSymLinks
2+
php_flag register_globals off
3+
php_flag register_long_arrays on
4+
AddType application/x-x509-ca-cert .crt .pem
5+
AddType application/pkix-crl .crl
6+
AddType application/pkix-cert .cer .der

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Unpack the PHPki tarball onto your web server. For example:
6060
cp phpki.tar.gz /var/tmp
6161
cd /var/www/html
6262
tar -xzvf /var/tmp/phpki.tar.gz
63+
chown <apache-user> -R phpki/
6364

6465
To configure the certificate authority and create your root certificate,
6566
point your browser to where you unpacked PHPki. For example:

ca/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
-e <?php
1+
<?php
22
header("Location: ./../index.php");
33
?>

readme.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
printHeader('setup');
88
print '<center><font color=red><h1>READ ME</h1></font></center>';
99
print '<pre>';
10-
readfile('./README');
10+
readfile('./README.md');
1111
print '</pre>';
1212
printFooter();
1313
?>

0 commit comments

Comments
 (0)