Hi. I am using mcrypt which is recognized by apxs when I compile my module.
However when I visit my website the HTTP Get requests are logged due to the
lines of my code that include mcrypt.
Any suggestion about my mistake here!
Miguel Antonio
On Fri, Apr 4, 2014 at 1:07 PM, Eric Covener wrote:
> Source releases: http://httpd.apache.org/download.cgi#apache24
> How to access via SCM: http://httpd.apache.org/dev/devnotes.html
>
> On Fri, Apr 4, 2014 at 1:02 PM, Miguel Villarreal
> wrote:
>> Hi, where can I find the C source codes of Apac
Source releases: http://httpd.apache.org/download.cgi#apache24
How to access via SCM: http://httpd.apache.org/dev/devnotes.html
On Fri, Apr 4, 2014 at 1:02 PM, Miguel Villarreal
wrote:
> Hi, where can I find the C source codes of Apache and headers.
>
> I have been trying to finde them in the Apa
Hi, where can I find the C source codes of Apache and headers.
I have been trying to finde them in the Apache website but I have not been able
to find them. I found them in other pages, but I have doubts about if they are
the original (without users' changes).
Please let me know.
Miguel Antonio
On Sun, Jun 27, 2010 at 4:17 AM, Abhinav Upadhyay wrote:
> Hello everyone!
> I am on an internship, and have developed an Apache 2 module as my project,
> that
> is to be used by our customers.
>
> Now, we are at the point of distribution of our module, my boss says that
> expecting the users to
ly don't want to disturb anyone by continuously posting silly
> questions but I am really in need of these answers. There aren't
> many good up to date references on Apache modules apart from
> Nick Kew's The Apache Modules book (I am using that one).
>
> You guys are doing a great job, but please answer my few questions,
> I would really appreciate it.
> Thanks
> Abhinav
>
>
in need of these answers. There aren't
many good up to date references on Apache modules apart from
Nick Kew's The Apache Modules book (I am using that one).
You guys are doing a great job, but please answer my few questions,
I would really appreciate it.
Thanks
Abhinav
Hello everyone!
I am on an internship, and have developed an Apache 2 module as my project, that
is to be used by our customers.
Now, we are at the point of distribution of our module, my boss says that
expecting the users to compile the module from source is not very practical,
although that is a
parameters for Apache modules
Hello,
The Apache web server on start up iterates through the list of
configuration directives and invokes the associated module handler for each
directive.
For e.g. if module A has handlers
Raj Iyer wrote:
> The Apache web server on start up iterates through the list of
> configuration directives and invokes the associated module handler for
> each directive.
>
>
>
> For e.g. if module A has handlers for directives D1 and D2, then the
> httpd process on start up will invoke the h
Hello,
The Apache web server on start up iterates through the list of
configuration directives and invokes the associated module handler for
each directive.
For e.g. if module A has handlers for directives D1 and D2, then the
httpd process on start up will invoke the handlers within mo
Hello,
The Apache web server on start up iterates through the list of
configuration directives and invokes the associated module handler for
each directive.
For e.g. if module A has handlers for directives D1 and D2, then the
httpd process on start up will invoke the handlers within mo
--- Ray Morris <[EMAIL PROTECTED]> wrote:
> > I am using the apr_* functions to allocate
> > memory (most of the time from the request->pool).
>
>If there are few places where you allocate from
> othr than the reqquest pool, I'd look at those
> first.
I used the bucket/brigade for my data t
ause any issues with other builtin apache
modules?
Apache code though never call the setlocale function so I think typically
apache runs in system's default locale.
Regards,
Basant.
What is the url address to the apache-modules list. Thanks
Hey,
On Mar 21, 2006, at 7:28 AM, William wrote:
What is the url address to the apache-modules list. Thanks
http://modules.apache.org/
No problemo.
S.
smime.p7s
Description: S/MIME cryptographic signature
Which operating system you are using? If you are using unix os, this problem
may be due to the prefork process which will be created to serve for
each connection. In that case you may have to use shared memory...
Regards,
Asok
> My understanding about per server conf is that any structure alloc
hello,
i'm forwarding a mail i sent to the apache-modules ml. i hope i'll have
answers here, thanks for feedback.
Original Message
Subject: [apache-modules] apache gives me a NULL config_file * pointer
Date: Tue, 15 Jun 2004 16:20:16 +0200
From: Julien ALLANOS <[EM
André Malo wrote:
* Sumeet Singh <[EMAIL PROTECTED]> wrote:
[internal redirects in output filters]
Yes, I also find it unsafe. However, note that some standard modules do
that too. For example mod_include runs sub-requests from within its
output filters. In my opinion this shouldn't be allo
* Sumeet Singh <[EMAIL PROTECTED]> wrote:
[internal redirects in output filters]
> Yes, I also find it unsafe. However, note that some standard modules do
> that too. For example mod_include runs sub-requests from within its
> output filters. In my opinion this shouldn't be allowed, because wit
William A. Rowe, Jr. wrote:
Sumeet Singh wrote:
I was wondering if invoking an internal-redirect from within an output filter is legal. I need to do that from my output filter but want to make sure that it conforms to apache2.0 API before I go ahead and design/code it.
I presume this i
On Sat, 2004-03-27 at 21:54, Joe Lewis wrote:
> Allow me to rephrase that in a way I think you are meaning. You are
> trying to use one module to alter the configuration of another module.
> It really shouldn't be done. However, anything is possible. Using the
> ap_get_module_config in a cas
* Andres Salomon ([EMAIL PROTECTED]) wrote :
>
> I prefer the 021-pcre_mangle_symbols.patch patch, even though it's
> larger; it ensures stability, at the cost of some code duplication. The
> 020-external_pcre.patch patch isn't as clean as I'd hoped, and for the
> added complexity, not much memor
Currently, apache2 includes a full version of pcre-3.9 in its sources;
this is built during compilation, and statically linked against. The
symbols from this library, are exported to apache modules. This is
undesirable for some apache modules; for example, php. Php links
against libpcre on the
Nick Kew wrote:
On Wed, 28 Jan 2004, Will Lowe wrote:
If you're looking for Apache 1.x (not 2.x)
Given that he's writing C, and that 2.x is a vastly richer development
environment than 1.3, why should he even consider that?
In 1.3 days, application developers had to resort to all kinds of
EMAIL PROTECTED]
Sent: Thursday, January 29, 2004 11:14 AM
To: [EMAIL PROTECTED]
Subject: Re: Help in Writing Apache Modules in C
If you're looking for Apache 1.x (not 2.x) and you're already fairly
proficient in C, check out the excellent book "Writing Apache Modules
in Perl a
: [EMAIL PROTECTED]
Subject: Re: Help in Writing Apache Modules in C
If you're looking for Apache 1.x (not 2.x) and you're already fairly
proficient in C, check out the excellent book "Writing Apache Modules
in Perl and C". It's written mostly with a slant towards Perl but the
c
On Wed, 28 Jan 2004, Will Lowe wrote:
> If you're looking for Apache 1.x (not 2.x)
Given that he's writing C, and that 2.x is a vastly richer development
environment than 1.3, why should he even consider that?
In 1.3 days, application developers had to resort to all kinds of
add-ons, none of whi
If you're looking for Apache 1.x (not 2.x) and you're already fairly
proficient in C, check out the excellent book "Writing Apache Modules
in Perl and C". It's written mostly with a slant towards Perl but the
concepts all apply and the last few chapters give an excelle
Hi All,
I have just joined the group. Please could anyone help me on a tutorial with
Writing Apache Modules in C.
Awaiting for a Helping Hand.
Thanks & Warm Regards
--BENNY
Eli Marmor wrote:
Hi,
...
It is VERY easy for mod_proxy of Apache to recognize such sessions and
block them. Before I'm starting such a project, I'd like to know:
1. Is there any existing code and/or module that implements this?
2. Is there any plan to add this to Apache / mod_proxy? My plan wil
html#Blocking_Calls
Original Message
Subject: Re: [apache-modules] Looking for Filter Writing tutorial
Date: Sun, 9 Mar 2003 11:47:39 +0100
From: Mads Toftum <[EMAIL PROTECTED]>
Newsgroups: server.http.apache.modules
References: <[EMAIL PROTECTED]>
On Sat, Mar 08, 2003 at 08:31:5
how about we put these 2 presentations on the 'offical' site and link to
them from developer docs?
http://www.apache.org/~jwoolley/bucketbrigades/bucketbrigades.pdf
&
http://www.apache.org/~gregames/ap2filters.ppt
Original Message
Subject: Re: [apache-module
Hi Günter,
A couple of weeks ago I asked in the Apache developpers' list if anyone
could compile a third party module (mod_replace) for Windows, and you
were very kind and did it. These two weeks I've been trying the module,
which sometimes works and sometimes doesn't. After much investigating, I
Thanks very much, Juan! I tried it and it worked!
>-Jatorrizko mezua-
>Nondik: Juan Rivera [mailto:[EMAIL PROTECTED]]
>Bidalia: Asteartea, 2002.eko urriak 15 15:34
>Nora: '[EMAIL PROTECTED]'
>Gaia: RE: Compiling Apache modules for windows
>
>
>Igor,
>
. Rivera
Citrix Systems, Inc.
-Original Message-
From: Igor Leturia [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 15, 2002 6:06 AM
To: [EMAIL PROTECTED]
Subject: Re: Compiling Apache modules for windows
Hi all!
Günter sent me a binary version of mod_replace. I started trying it
and
Hi all!
Günter sent me a binary version of mod_replace. I started trying it
and I couldn't get it to work. At last I found that there is an error in
the example configuration file. Instead of being 'Replace colour color
text/html', it should be 'Replace "colour" "color" text/html'. At least
t
Thanks very much, Günter! I'm going to try it right now!
Igor
>-Jatorrizko mezua-
>Nondik: Günter Knauf [mailto:[EMAIL PROTECTED]]
>Bidalia: Ostirala, 2002.eko urriak 11 20:01
>Nora: [EMAIL PROTECTED]
>Gaia: Re: Compiling Apache modules for
Hi Igor,
> I'm interested in a third party module for Apache that I found in the
> internet, but there's only the source code of it (a .c file), not the
> .so file. I'm a windows user, and I read in the Apache website's faq
if that's the module you found:
http://pihl.kumpu.org/apache2/
then you
Hi Igor,
please send me the source or a link where I can find it; and I'll give it a try...
in addition you can take a look on my site where you can find a bunch of other module
binaries for Win32:
http://www.gknw.de/development/apache/
Guenter.
> I'm interested in a third party module for Ap
Hi!
I'm interested in a third party module for Apache that I found in the
internet, but there's only the source code of it (a .c file), not the
.so file. I'm a windows user, and I read in the Apache website's faq
that "only a limited number of the developers have the capability to
build the I
I'm finding that using the bucket API to develop filters using
Apache2 is very easy and powerful - congratulations to the
desiginers.
One of the things I'm doing is looking for regular expressions
in the contents of buckets. Because the buckets are not null
terminated strings, I must copy bytes
> I'm very beginner to Apache API Programming.
> Where to find documents?
I am working on a tutorial for new Apache2 module
programmers. There are still some parts of the
documentation I need to touch up, but it's good
enough that it may answer some of your questions.
http://threebit.net/tuto
thanx this is good.
- Original Message -
From: "Bojan Smojver" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, September 23, 2002 5:12 AM
Subject: Re: Apache Modules.
> Try this: http://www.onlamp.com/pub/ct/38
>
> I found it to be exc
EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Sunday, September 22, 2002 7:16 PM
> Subject: Re: Apache Modules.
>
>
> > -BEGIN PGP SIGNED MESSAGE-
> > Hash: SHA1
> >
> > >I'm very beginner to Apache API Programming. where to find
thanx.
but this document is not sufficient (to me) :P
- Original Message -
From: "Maurizio Marini" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, September 22, 2002 7:16 PM
Subject: Re: Apache Modules.
> -BEGIN PGP SIGNED MESSAGE-
> H
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
>I'm very beginner to Apache API Programming. where to find documents?
http://httpd.apache.org/docs/misc/API.html
- --
Maurizio Marini
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gn
Hi.
I'm very beginner to Apache API
Programming. where to find documents?
Martin Kraemer wrote:
> About the X-Forwarded-* stuff: It's non-standard anyway (you can add
> any X-whatever header and still be RFC2616 compliant) so I'd rather
> not see it in 1.3 now (maybe in the next release ;-)
>
> I've seen proxies like squid hang because of nonstandard headers
> (proxy-
On Wed, May 29, 2002 at 10:44:16PM +0200, Martin Kraemer wrote:
> Yes, the patch was correct (IMHO) and yes, I committed this one.
>
> About the X-Forwarded-* stuff: It's non-standard anyway (you can add
> any X-whatever header and still be RFC2616 compliant) so I'd rather
> not see it in 1.3 now
On Wed, May 29, 2002 at 06:28:24PM +0200, Thomas Eibner wrote:
> From: Anthony Howe <[EMAIL PROTECTED]>
> Subject: Re: [apache-modules] Setting bytes_sent in Request Record while generating
> all headers by myself in Apache 1.3
>
> >Number: 6841
&g
Now is not the time to be adding in code whilly-nilly...
--
===
Jim Jagielski [|] [EMAIL PROTECTED] [|] http://www.jaguNET.com/
"A society that will trade a little liberty for a little order
will
On Wed, May 29, 2002 at 08:18:53PM +0200, Thomas Eibner wrote:
> On Wed, May 29, 2002 at 02:02:53PM -0400, Greg Marr wrote:
> > At 01:30 PM 05/29/2002, Thomas Eibner wrote:
> > >Index: proxy_http.c
> > >===
> > >RCS file: /home/cvspub
On Wed, May 29, 2002 at 02:02:53PM -0400, Greg Marr wrote:
> At 01:30 PM 05/29/2002, Thomas Eibner wrote:
> >Index: proxy_http.c
> >===
> >RCS file: /home/cvspublic/apache-1.3/src/modules/proxy/proxy_http.c,v
> >retrieving revision 1.
At 01:30 PM 05/29/2002, Thomas Eibner wrote:
>Index: proxy_http.c
>===
>RCS file: /home/cvspublic/apache-1.3/src/modules/proxy/proxy_http.c,v
>retrieving revision 1.98
>diff -u -r1.98 proxy_http.c
>--- proxy_http.c21 Apr 2002
On Wed, May 29, 2002 at 07:44:16PM +0200, Graham Leggett wrote:
> Thomas Eibner wrote:
>
> > Inline patch here, but I'm wondering if you want the X-Forwarded-For
> > header to be stuck inside the conditional too?
>
> I think it should be... will sort this out later tonight or first thing
> tomor
Thomas Eibner wrote:
> Inline patch here, but I'm wondering if you want the X-Forwarded-For
> header to be stuck inside the conditional too?
I think it should be... will sort this out later tonight or first thing
tomorrow, have to leave the internet cafe now to fetch someone.
Regards,
Graham
--
On Wed, May 29, 2002 at 07:20:17PM +0200, Graham Leggett wrote:
> Thomas Eibner wrote:
>
> > Ah yes, X-Forwarded-For is there, but not the two others there is in
> > 2.0 (X-Forwarded-Server and X-Forwared-Host) I read in the source that
> > someone thinks it needs to go into the Via header instea
Thomas Eibner wrote:
> Ah yes, X-Forwarded-For is there, but not the two others there is in
> 2.0 (X-Forwarded-Server and X-Forwared-Host) I read in the source that
> someone thinks it needs to go into the Via header instead. And as I can
> read from the source, X-Forwarded-For is only sent when
On Wed, May 29, 2002 at 07:10:25PM +0200, Graham Leggett wrote:
> Thomas Eibner wrote:
>
> > Looking at apache-1.3 in cvs VS httpd-2.0 there seems to be a few
> > changes, and the X-Forwarded-* headers are some of them. I have a
> > patch ready if needed (with what I believe are your comments in
Thomas Eibner wrote:
> Looking at apache-1.3 in cvs VS httpd-2.0 there seems to be a few
> changes, and the X-Forwarded-* headers are some of them. I have a
> patch ready if needed (with what I believe are your comments in
> it).
Just checked - the X-Forwarded-For is definitely there in v1.3. Du
On Wed, May 29, 2002 at 06:47:20PM +0200, Graham Leggett wrote:
> Thomas Eibner wrote:
>
> > Anyone looked at the remaining open bugs in 1.3 and might want to include
> > this patch (and bug)?
>
> Only if someone can verify that this patch actually does anything. The
> proxy has been largely rew
Just FYI.. another datum on the 'AG are snobs' scale..
--
#kenP-)}
Ken Coar, Sanagendamgagwedweinini http://Golux.Com/coar/
Author, developer, opinionist http://Apache-Server.Com/
"Millennium hand and shrimp!"
--- Begin Message ---
Thomas Eibner wrote:
> On Tue, May 28, 2002 at 01:2
Thomas Eibner wrote:
> Anyone looked at the remaining open bugs in 1.3 and might want to include
> this patch (and bug)?
Only if someone can verify that this patch actually does anything. The
proxy has been largely rewritten since then, so this bug might not still
be outstanding.
There is a rel
TED]> -
Date: Wed, 29 May 2002 18:23:00 +0200
From: Anthony Howe <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Subject: Re: [apache-modules] Setting bytes_sent in Request Record while generating
all headers by myself in Apache 1.3
User-Agent: Mozilla/5.0 (Windows; U;
65 matches
Mail list logo