Re: Visual C++ Processor Pack

2012-12-26 Thread Mario Brandt
Hallo, vielleicht spannend ist das momentane Thema dazu in der Developer mailing liste. Demnächst kommt ein patch für Windows für die Dokumentation. http://people.apache.org/~gsmith/httpd/diffs/unix_to_win_build.diff Wie dem auch sei, hier der Link wie die make files exportiert werden.

AUTO: Benjamin Ruopp ist außer Haus

2012-12-26 Thread Benjamin . Ruopp
Ich bin bis 07.01.2013 abwesend Ich kehre zurück am 07.01.2013. Ihre Nachricht wird nicht weitergeleitet. Ich werde erst nach meiner Rückkehr darauf antworten. Bitte wenden Sie sich bei *dringenden* Fragen zu Subversion an Karsten Traub oder Stefan Robl. Berechtigungsänderungen bitte an den

Re: [users@httpd] Directory access control by referer and password auth

2012-12-26 Thread Andrey Utkin
2012/12/25 Andrey Utkin andrey.krieger.ut...@gmail.com: 2012/12/25 Wade Evans wade.p.ev...@gmail.com: Are you certain that this will suit your security needs? HTTP_REFERRER is easy to spoof... Yes. Thanks for asking, the possibility of spoofing is understood, nothing top secret is

Re: [users@httpd] Directory access control by referer and password auth

2012-12-26 Thread Nick Kew
On 26 Dec 2012, at 11:28, Andrey Utkin wrote: Anyone? See http://httpd.apache.org/docs/2.4/mod/core.html#if -- Nick Kew - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail:

Re: [users@httpd] How to retrieve IP address of incoming packets in text file using httpd source code

2012-12-26 Thread Bhavna Saini
Thanks for the info. I have gone through customlog and i understand that it is used to log the IP and other parameters, But I want to compare the IP address of incoming requests with IP address present in a pre-built data structure. After comparing, the request will be served accordingly.

Re: [users@httpd] How to retrieve IP address of incoming packets in text file using httpd source code

2012-12-26 Thread John Iliffe
Maybe I'm missing something following this discussion, but doesn't the following PHP command fetch the information you need? If so, I'm sure the same results can be obtained in other scripting languages. $_SERVER['REMOTE_ADDR']; Regards, John === On

Re: [users@httpd] How to retrieve IP address of incoming packets in text file using httpd source code

2012-12-26 Thread Bhavna Saini
I have not used any PHP command up till now. I was trying to make it work using the apache(httpd) source code itself. Can it be done without using any script language?? OR by adding some code lines in the apache source code files itself?? On Thu, Dec 27, 2012 at 1:01 AM, John Iliffe

Re: [users@httpd] How to retrieve IP address of incoming packets in text file using httpd source code

2012-12-26 Thread Nick Kew
On 26 Dec 2012, at 19:31, John Iliffe wrote: Maybe I'm missing something following this discussion, but doesn't the following PHP command fetch the information you need? If so, I'm sure the same results can be obtained in other scripting languages. $_SERVER['REMOTE_ADDR']; You may