Questions tagged [apache-modules]

Apache modules extend the Apache opensource HTTP server core functionality for special purposes.

Please refert to for more details.

Resources:

180 questions
4
votes
1 answer

Apache mod-auth-mysql with phpass encrypted password (Wordpress)

I need to have password protection on some web pages outside of the main Wordpress site. The users would prefer to use the usernames and passwords they already have in the Wordpress. The obvious solution would seem to be to use the Apace module for…
4
votes
2 answers

How to install a mod_ftp module on a MAMP server

Background: I recently installed MAMP, and am using it as a production server. The server setup did not come with an FTP server, and from what I've read, you can set up an FTP server via mod_ftp, an Apache module. I am not an expert with Apache…
Danny Bullis
  • 3,043
  • 2
  • 29
  • 35
3
votes
0 answers

access Apache Configuration from Apache Module

I am developing an Apache 2.x module with I/O filters. I need to access to Apache configuration from httpd.conf from my module filters code. I have "The Apache Modules Book, Application Development with Apache" of Nick Kew, but I have not found this…
logoff
  • 3,347
  • 5
  • 41
  • 58
3
votes
1 answer

apache modules ap_log_perror is at a different level than ap_log_error

I have an apache module that logs some lines. If I log with ap_log_error and have set LogLevel to debug I see the message. However, if I try to use ap_log_perror I can see error-level logs but the debug logs don't show up. It seems as if the two are…
Paul Rubel
  • 26,632
  • 7
  • 60
  • 80
3
votes
4 answers

Compiling Apache web server with dynamic module support

I have just compiled Apache 2.2.17 on a fresh install of Ubuntu 10.04.2. It's a learning exercise to discover what actually goes on when you compile something rather than just using apt-get hence the avoidance of using apt-get in favour of compiling…
Julius
  • 31
  • 1
  • 1
  • 2
3
votes
5 answers

web application firewall development

I have an assignment to develop a web application firewall. I have been researching for some source codes about that.My main source was ModSecurity. Main question is that: -Which framework or programming language I can use, to develop a web…
el nino
  • 129
  • 1
  • 3
  • 10
3
votes
2 answers

How to switch Apache MPM from Prefork to Event?

How to switch MPM Prefork to Event on Apache 2.4, Debian 8? I have already installed php-7 and php-fpm but can not find a complete tutorial on switching MPM Prefork to Event. I tried this but MPM Prefork is still running instead of Event.
3
votes
1 answer

Already forwarded by dispatcher - Access author through proxy with dispatcher author

I am currently trying to get an author dispatcher connected to an AEM Author instance. So without further ado I configure server1 with an author, try to access it through a browser ... works great. Then I configure the Author dispatcher on server2…
nabello
  • 716
  • 11
  • 29
3
votes
1 answer

Share data between apache modules

Is there a way to share data between apache modules? Example: mod_a makes a calculation and gets some number as a result. mod_b makes another calculation and I need to sum it with the result from mod_a. What is the way to do it? I've tried to pass…
umka
  • 1,655
  • 1
  • 12
  • 18
3
votes
2 answers

Can I use Boost and/or C++ libraries SAFELY inside an Apache module?

In my Apache module, which is built in C++, I uses strings, vectors, and the related when attempting to provide functionality to my module. My concern is that I am not using the Apache memory pool and that the program is going to segfault along the…
Alex Erwin
  • 333
  • 1
  • 10
2
votes
0 answers

is there a simpler way to let apache/mod_wsgi restart automatically when py files changed?

I have a django site running in apache/mod_wsgi. Every time after updating the code I need restart apache manually. mod_wsgi provide a method to do it: http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode which I think is, kind of, not so…
zchenah
  • 2,060
  • 16
  • 30
2
votes
1 answer

interprocess communication in webobjects (jvm, wotaskd, apache module)

I am using the Java edition of Apple Webobjects and was wondering how it all works under the hood. For an app to run successfully it would appear that one needs the java WebObjects Application running in the java virtual machine, an apache instance…
murungu
  • 2,090
  • 4
  • 21
  • 45
2
votes
0 answers

Storing Cookies in Apache Server using Apache Module

I am trying to write a Apache module where I can store a Cookie Value sent in response . I want to send this back in the next requests. I tried using the example from here Global variables in Apache Server But I cannot consistently retrieve the…
2
votes
1 answer

How to transfer a request from one apache module to other module?

I have built a joomla-based website, and serving it with Apache server. I am now have to build a module to check the legitimate of the request from URI, if the URI satisfies some constrains, Apache then lets it access the normal Joomla website, else…
weefwefwqg3
  • 961
  • 10
  • 23
2
votes
1 answer

How to take control of a connection in an apache c module

I am writing an apache module. I need to recieve arbitrary data from the client after authentication. In principle my solution requires me to write a loop that allows the program to read and write from a socket — or the apache underlying mechanism…
Iharob Al Asimi
  • 52,653
  • 6
  • 59
  • 97
1
2
3
11 12