From: swa
Date: Fri, 29 Mar 2002 21:03:56 +0000 (+0000)
Subject: further testing for email and file operations
X-Git-Tag: v_2_9_14~317
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/@default-cgi@toggle?a=commitdiff_plain;h=bef6a55442d0755e48c1713a51b2545434e32277;p=privoxy.git
further testing for email and file operations
---
diff --git a/doc/webserver/submit/index.php b/doc/webserver/submit/index.php
index 7b1d2871..47a76739 100644
--- a/doc/webserver/submit/index.php
+++ b/doc/webserver/submit/index.php
@@ -5,7 +5,7 @@
// This file belongs in
// ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
//
-// $Id: index.php,v 1.3 2002/03/29 09:39:48 swa Exp $
+// $Id: index.php,v 1.4 2002/03/29 09:55:21 swa Exp $
//
// Written by and Copyright (C) 2001 the SourceForge
// Privoxy team. http://www.privoxy.org/
@@ -54,8 +54,53 @@ incorrectly blocked, please use the forms below to report this.
New Advertisement
+
+
+
+
+$cfile = "counter-data.inc";
+$localip = "127.0.0.1";
+$serverip = "127.0.0.1";
+# Enter information on the next line, but only after you read
+# the "c-readme.txt" file.
+$browser_id = "";
+if (file_exists ($cfile)) {
+ $fp = fopen ($cfile,"r+");
+ $data = fgets ($fp,25);
+ $ip = chop (substr($data,0,15));
+ $count = substr($data,15);
+# Unremark the second "if" statement and remark the first one if
+# your site is on a hosted server and you have a dynamic IP, but
+# only after you read "c-readme.txt" file.
+ if ($REMOTE_ADDR == $localip or $REMOTE_ADDR == $serverip)
+# if ($REMOTE_ADDR == substr_count($HTTP_USER_AGENT,$browser_id) > 0)
+ $np = $ip;
+ else
+ $np = $REMOTE_ADDR;
+ if ($np != $ip)
+ $count += 1;
+ rewind ($fp);
+ fputs ($fp,substr($np." ",0,15).$count);
+ fclose ($fp);
+ echo $count;
+}
+else {
+ $fp = fopen($cfile,"w");
+ $np = $REMOTE_ADDR;
+ $count = "1";
+ fputs ($fp,substr($np." ",0,15).$count);
+ fclose ($fp);
+ echo $count;
+}
+?>
+
+
-