Re: PHP Error Seiten überschreiben

2014-09-30 Thread Julian Golderer
Hallo Mario, danke für die Antwort. Jetzt weiß ich wenigstens, dass ich nichts übersehen habe ;-) Beste Grüße, Julian Am Dienstag, 30. September 2014, 14:33:14 schrieb Mario Brandt: Hallo Julian, leider ist das nicht möglich die Seite zu überschreiben. Jedoch könntest Du eventuell mit

[users@httpd] unsubscribe

2014-09-30 Thread Ismael Puerto
- To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

[users@httpd] Re: confirm unsubscribe from users@httpd.apache.org

2014-09-30 Thread Ismael Puerto
remove On 30/09/14 11:14, users-h...@httpd.apache.org wrote: Hi! This is the ezmlm program. I'm managing the users@httpd.apache.org mailing list. To confirm that you would like ismael.pue...@seres.es removed from the users mailing list, please send a short reply to this address:

Re: [users@httpd] unsubscribe

2014-09-30 Thread Chris Fortmüller
Hi Ismael, just a little nudge: you need to email users-unsubscr...@httpd.apache.org to unsubscribe, not the user mailing list On Tue, Sep 30, 2014 at 11:09 AM, Ismael Puerto ismael.pue...@seres.es wrote: - To unsubscribe,

Re: [users@httpd] corrupted content error, httpd can't access SSL key file [wd-vc]

2014-09-30 Thread Benjamin Oppermann
I am sorry, I had it switched off for a few hours (it's a home pc), but will keep it on now. Would you mind trying again? Thanks! Am Di, 30. Sep 2014, um 03:49, schrieb Edgar Pettijohn: I tried to go to your site, but apparently the server is down. On 09/29/2014 07:16 PM, Benjamin

[users@httpd] Denying access for a complicated bugger address

2014-09-30 Thread Hans-Georg Scherneck
Hi, I'm new to this, and I'm no specialist in Apache, sorry. My site is bombarded by POST requests from a site identifying itself like 123.123.123.123.word.word.word.word A deny from instruction with a string trying to match this in .htaccess does not appear to work (though other abusers with

Re: [users@httpd] Denying access for a complicated bugger address

2014-09-30 Thread Frederik Nosi
Blocking from apache: Location / Order Allow,Deny Deny from INSERT IP TO BLOCK HERE /Location You can block it at the network stack level too, this way apache does not even see the request, ex on linux using iptables. bye, Frederik On 09/30/2014 07:16 PM, Hans-Georg Scherneck

Re: [users@httpd] Denying access for a complicated bugger address

2014-09-30 Thread Rainer M. Canavan
On Sep 30, 2014, at 19:16 , Hans-Georg Scherneck h...@chalmers.se wrote: My site is bombarded by POST requests from a site identifying itself like 123.123.123.123.word.word.word.word A deny from instruction with a string trying to match this in .htaccess does not appear to work (though

Re: [users@httpd] Denying access for a complicated bugger address

2014-09-30 Thread Hans-Georg Scherneck
Rainer M. Canavan wrote: On Sep 30, 2014, at 19:16 , Hans-Georg Scherneck h...@chalmers.se wrote: My site is bombarded by POST requests from a site identifying itself like 123.123.123.123.word.word.word.word A deny from instruction with a string trying to match this in .htaccess does not

Re: [users@httpd] Denying access for a complicated bugger address

2014-09-30 Thread Frederik Nosi
Hi Hans-Georg, On 09/30/2014 08:26 PM, Hans-Georg Scherneck wrote: Rainer M. Canavan wrote: On Sep 30, 2014, at 19:16 , Hans-Georg Scherneck h...@chalmers.se wrote: My site is bombarded by POST requests from a site identifying itself like 123.123.123.123.word.word.word.word A deny from

Re: [users@httpd] Denying access for a complicated bugger address

2014-09-30 Thread Hans-Georg Scherneck
Frederik Nosi wrote: Hi Hans-Georg, On 09/30/2014 08:26 PM, Hans-Georg Scherneck wrote: Rainer M. Canavan wrote: On Sep 30, 2014, at 19:16 , Hans-Georg Scherneck h...@chalmers.se wrote: My site is bombarded by POST requests from a site identifying itself like

Re: [users@httpd] Denying access for a complicated bugger address

2014-09-30 Thread Eric Covener
On Tue, Sep 30, 2014 at 2:55 PM, Hans-Georg Scherneck h...@chalmers.se wrote: It rather seems the issue is for the Apache developers to solve, e.g. to extend the scope of the Deny string match. Should be simple. It's not clear what you're trying to match. A string in the request body? Maybe

Re: [users@httpd] Denying access for a complicated bugger address

2014-09-30 Thread Frederik Nosi
On 09/30/2014 08:55 PM, Hans-Georg Scherneck wrote: Frederik Nosi wrote: Hi Hans-Georg, On 09/30/2014 08:26 PM, Hans-Georg Scherneck wrote: Rainer M. Canavan wrote: On Sep 30, 2014, at 19:16 , Hans-Georg Scherneck h...@chalmers.se wrote: My site is bombarded by POST requests from a site

Re: [users@httpd] Denying access for a complicated bugger address

2014-09-30 Thread Oscar Knorn
Hi Hans-Georg, i guess, you will have to alter the Code of the form. 1. check for the referer URI in the action=* script. 2. establish a session in the form and check for the sessionid in the action script. 3. use javascript to write additional hidden fields into the form and check for their

Re: [users@httpd] Denying access for a complicated bugger address

2014-09-30 Thread Nick Kew
On 30 Sep 2014, at 18:16, Hans-Georg Scherneck wrote: a site identifying itself like 123.123.123.123.word.word.word.word What do you mean by identifying itself like? Requests don't come from a site. The information you have about where they do come from is usually no more than an IP

[users@httpd] [SOLVED] Q1. Apache httpd-2.4.9 configuration : client denied by server configuration error

2014-09-30 Thread James B. Byrne
On Mon, September 29, 2014 18:30, Edgar Pettijohn wrote: The list feels this message is spam for some reason and won't deliver it. Sending again from hotmail just to make sure it gets through. I see the following two lines in your httpd.conf. Why not load the stock httpd-vhosts.conf and edit to

Re: [users@httpd] Denying access for a complicated bugger address

2014-09-30 Thread Hans-Georg Scherneck
Thanks Oscar, that makes a lot of sense. I'll try to realize your suggestion. Case closed, thanks everyone, you've all helped to clear things up for me the newbie /Hans-Georg Oscar Knorn wrote: Hi Hans-Georg, i guess, you will have to alter the Code of the form. 1. check for the referer URI

[users@httpd] Will these rewrite rules do what I expect?

2014-09-30 Thread James Moe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I wish to have three rules 1. if URL = http[s]://info.massamio.com/blog, redirect to http://blog.sohnen-moe.com/ 2. if URL = http[s]://info.massamio.com/resources, redirect to http://blog.sohnen-moe.com/ 3. any other http[s]://*massamio.com/