summaryrefslogtreecommitdiff
path: root/scripts/apache/htaccessfix.awk
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/apache/htaccessfix.awk')
-rw-r--r--scripts/apache/htaccessfix.awk23
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/apache/htaccessfix.awk b/scripts/apache/htaccessfix.awk
new file mode 100644
index 0000000..3c784cd
--- /dev/null
+++ b/scripts/apache/htaccessfix.awk
@@ -0,0 +1,23 @@
+# $Id$
+
+/^[ \t]*php3_*/ {
+ phpcommand=substr($1,6)
+ phpvalue=tolower($2)
+ print "<IfModule mod_php3.c>"
+ print $0
+ print "</IfModule>"
+ print "<IfModule mod_php4.c>"
+ if (phpvalue=="on") {
+ print "php_flag " phpcommand " on"
+ } else if (phpvalue=="off") {
+ print "php_flag " phpcommand " off"
+ } else {
+ print "php_value " phpcommand " " substr($0,index($0,$1)+length($1)+1)
+ }
+ print "</IfModule>"
+}
+
+! /^[ \t]*php3_*/ {
+ print $0
+}
+