How install sub mod

--0015175932de03b237047c412941
Content-Type: text/plain; charset=ISO-8859-1

I'd like to how I install a sub module.
I'm trying to install mod_lbmethod_rr.c (Revision 774239*).*
*
*
*I install APACHE using the following:*
*./configure --prefix=/apache/path --enable-proxy --with-mpm=worker && make
&& make install*
*
*
*If necessary, I install APACHE again.*

Ricardo

--0015175932de03b237047c412941
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

I'd like to how I install a sub module.<div>I'm trying to install m=
od_lbmethod_rr.c (Revision 774239<span class=3D"Apple-style-span" style=3D"=
font-family: sans-serif; font-size: medium; "><strong><span class=3D"Apple-=
style-span" style=3D"font-family: arial; font-weight: normal; font-size: sm=
all; ">).</span></strong></span></div>
<div><span class=3D"Apple-style-span" style=3D"font-family: sans-serif; fon=
t-size: medium; "><strong><span class=3D"Apple-style-span" style=3D"font-fa=
mily: arial; font-weight: normal; font-size: small; "><br></span></strong><=
/span></div>
<div><span class=3D"Apple-style-span" style=3D"font-family: sans-serif; fon=
t-size: medium; "><strong><span class=3D"Apple-style-span" style=3D"font-fa=
mily: arial; font-weight: normal; font-size: small; ">I install APACHE usin=
g the following:</span></strong></span></div>
<div><span class=3D"Apple-style-span" style=3D"font-family: sans-serif; fon=
t-size: medium; "><strong><span class=3D"Apple-style-span" style=3D"font-fa=
mily: arial; font-weight: normal; font-size: small; ">./configure --prefix=
=3D/apache/path --enable-proxy --with-mpm=3Dworker && make &&am=
p; make install</span></strong></span></div>
<div><span class=3D"Apple-style-span" style=3D"font-family: sans-serif; fon=
t-size: medium; "><strong><span class=3D"Apple-style-span" style=3D"font-fa=
mily: arial; font-weight: normal; font-size: small; "><br></span></strong><=
/span></div>
<div><span class=3D"Apple-style-span" style=3D"font-family: sans-serif; fon=
t-size: medium; "><strong><span class=3D"Apple-style-span" style=3D"font-fa=
mily: arial; font-weight: normal; font-size: small; ">If necessary, I insta=
ll APACHE again.</span></strong></span></div>
<div><br>Ricardo<br>
</div>

--0015175932de03b237047c412941--
ricardo figueiredo [ So, 03 Januar 2010 12:46 ] [ ID #2027675 ]

Re: How install sub mod

On Sun, Jan 3, 2010 at 6:46 AM, ricardo figueiredo
<ricardoogrande [at] gmail.com> wrote:
> I'd like to how I install a sub module.
> I'm trying to install mod_lbmethod_rr.c (Revision 774239).
> I install APACHE using the following:
> ./configure --prefix=/apache/path --enable-proxy --with-mpm=worker && make
> && make install
> If necessary, I install APACHE again.

If you download one or two source files, and they build successfully
with apxs, there's no sense in looking any farther.

I assume that despite creating another thread, you're still debugging
the "no response" issue. Have you checked your error log yet?

--
Eric Covener
covener [at] gmail.com

------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org
Eric Covener [ So, 03 Januar 2010 16:46 ] [ ID #2027676 ]

Re: How install sub mod

On Sun, Jan 3, 2010 at 6:46 AM, ricardo figueiredo
<ricardoogrande [at] gmail.com> wrote:
> I'd like to how I install a sub module.
> I'm trying to install mod_lbmethod_rr.c (Revision 774239).
> I install APACHE using the following:
> ./configure --prefix=/apache/path --enable-proxy --with-mpm=worker && make
> && make install

Hrm, do you need to explicitly enable DSO support (--enable-so)?

--
Eric Covener
covener [at] gmail.com

------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org
Eric Covener [ So, 03 Januar 2010 16:47 ] [ ID #2027677 ]

Re: How install sub mod

--00032555ac02c0b5cc047c558f35
Content-Type: text/plain; charset=ISO-8859-1

Well, I compiled mod_lbmethod_rr.c with APXS (apxs -a -i -c
mod_lbmethod_rr.c)
During compilation there were some WARNINGS

111:warning:excess elements in struct initializer
111:warning:(near initialization for 'round robin')
113:warning:excess elements in struct initializer
111:warning:(near initialization for 'round robin')

When I started APACHE and loaded web page in browser, doesn't show the web
page.
I saw logs/error.log and there is a SEGMENTATION FAULT.

My httpd.conf:

LoadModule proxy_balancer_rr_module modules/mod_lbmethod_rr.so

ProxyPass /index1.php balancer://cluster1/
ProxyPass /index2.php balancer://cluster2/

<Proxy balancer://cluster1/>
ProxySet lbmethod=roundrobin
BalancerMember http://192.168.1.11/index1.php
BalancerMember http://192.168.1.12/index1.php
BalancerMember http://192.168.1.13/index1.php
BalancerMember http://192.168.1.14/index1.php
</Proxy>

<Proxy balancer://cluster2/>
ProxySet lbmethod=roundrobin
BalancerMember http://192.168.1.15/index2.php
BalancerMember http://192.168.1.16/index2.php
</Proxy>

I haven't problems with others algorithms.

Ricardo

On Sun, Jan 3, 2010 at 1:47 PM, Eric Covener <covener [at] gmail.com> wrote:

> On Sun, Jan 3, 2010 at 6:46 AM, ricardo figueiredo
> <ricardoogrande [at] gmail.com> wrote:
> > I'd like to how I install a sub module.
> > I'm trying to install mod_lbmethod_rr.c (Revision 774239).
> > I install APACHE using the following:
> > ./configure --prefix=/apache/path --enable-proxy --with-mpm=worker &&
> make
> > && make install
>
> Hrm, do you need to explicitly enable DSO support (--enable-so)?
>
> --
> Eric Covener
> covener [at] gmail.com
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
> " from the digest: users-digest-unsubscribe [at] httpd.apache.org
> For additional commands, e-mail: users-help [at] httpd.apache.org
>
>


--
Muito Obrigado

Ricardo

--00032555ac02c0b5cc047c558f35
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

Well, I compiled mod_lbmethod_rr.c with APXS (apxs -a -i -c mod_lbmethod_rr=
..c)<br><div>During compilation there were some WARNINGS<br><br><div>111:war=
ning:excess elements in struct initializer</div><div>111:warning:(near init=
ialization for 'round robin')</div>


<div>113:warning:excess elements=A0in struct initializer</div><div>111:warn=
ing:(near initialization for 'round robin')</div><div><br></div><di=
v>When I started APACHE and loaded web page in browser, doesn't show th=
e web page.<br>

I saw logs/error.log and there is a SEGMENTATION FAULT.<br><br>My httpd.con=
f:<br><br>LoadModule proxy_balancer_rr_module modules/mod_lbmethod_rr.so<br=
><br></div>
ProxyPass /index1.php balancer://cluster1/<br>ProxyPass /index2.php balance=
r://cluster2/<br><br><Proxy balancer://cluster1/><br>=A0=A0=A0=A0=A0=
=A0 ProxySet lbmethod=3Droundrobin<br>=A0=A0=A0=A0=A0=A0 BalancerMember <a =
href=3D"http://192.168.1.11/index1.php">http://192.168.1.11/ index1.php</a><=
br>

=A0=A0=A0=A0=A0=A0 BalancerMember <a href=3D"http://192.168.1.12/index1.php=
">http://192.168.1.12/index1.php</a><br>=A0=A0=A0=A0=A0=A0 BalancerMember <=
a href=3D"http://192.168.1.13/index1.php">http://192.168.1.13/ index1.php</a=
><br>=A0=A0=A0=A0=A0=A0 BalancerMember <a href=3D"http://192.168.1.14/index=
1.php">http://192.168.1.14/index1.php</a><br>

</Proxy><br><br><Proxy balancer://cluster2/><br>=A0=A0=A0=A0=A0=
=A0 ProxySet lbmethod=3Droundrobin<br>=A0=A0=A0=A0=A0=A0 BalancerMember <a =
href=3D"http://192.168.1.15/index2.php">http://192.168.1.15/ index2.php</a><=
br>=A0=A0=A0=A0=A0=A0 BalancerMember <a href=3D"http://192.168.1.16/index2.=
php">http://192.168.1.16/index2.php</a><br>

</Proxy><br></div><div><br>I haven't problems with others algorit=
hms.<br><br>Ricardo<br><br><div class=3D"gmail_quote">On Sun, Jan 3, 2010 a=
t 1:47 PM, Eric Covener <span dir=3D"ltr"><<a href=3D"mailto:covener [at] gma=
il.com" target=3D"_blank">covener [at] gmail.com</a>></span> wrote:<br>


<blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, =
204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div>On Sun, Jan =
3, 2010 at 6:46 AM, ricardo figueiredo<br>
<<a href=3D"mailto:ricardoogrande [at] gmail.com" target=3D"_blank">ricardoog=
rande [at] gmail.com</a>> wrote:<br>
</div><div>> I'd like to how I install a sub module.<br>
> I'm trying to install mod_lbmethod_rr.c (Revision 774239).<br>
> I install APACHE using the following:<br>
> ./configure --prefix=3D/apache/path --enable-proxy --with-mpm=3Dworker=
&& make<br>
> && make install<br>
<br>
</div>Hrm, do you need to explicitly enable DSO support (--enable-so)?<br>
<div><div></div><div><br>
--<br>
Eric Covener<br>
<a href=3D"mailto:covener [at] gmail.com" target=3D"_blank">covener [at] gmail.com</a=
><br>
<br>
------------------------------------------------------------ ---------<br>
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:<a href=3D"http://httpd.apache.org/userslist.html" target=3D"_b=
lank">http://httpd.apache.org/userslist.html</a>> for more info.<br>
To unsubscribe, e-mail: <a href=3D"mailto:users-unsubscribe [at] httpd.apache.or=
g" target=3D"_blank">users-unsubscribe [at] httpd.apache.org</a><br>
=A0 " =A0 from the digest: <a href=3D"mailto:users-digest-unsubscribe=
[at] httpd.apache.org" target=3D"_blank">users-digest-unsubscribe [at] httpd.apache.=
org</a><br>
For additional commands, e-mail: <a href=3D"mailto:users-help [at] httpd.apache.=
org" target=3D"_blank">users-help [at] httpd.apache.org</a><br>
<br>
</div></div></blockquote></div><br><br clear=3D"all"><br>-- <br>Muito Obrig=
ado<br><br>Ricardo<br>
</div>

--00032555ac02c0b5cc047c558f35--
ricardo figueiredo [ Mo, 04 Januar 2010 13:07 ] [ ID #2027747 ]

Re: How install sub mod

--00032555a2a2008367047c55fd33
Content-Type: text/plain; charset=ISO-8859-1

Remember,

I haven't problems with the older revision (rev. 594659)
I have problems with the newest revision (rev. 774239)

Ricardo

On Mon, Jan 4, 2010 at 10:07 AM, ricardo figueiredo <
ricardoogrande [at] gmail.com> wrote:

> Well, I compiled mod_lbmethod_rr.c with APXS (apxs -a -i -c
> mod_lbmethod_rr.c)
> During compilation there were some WARNINGS
>
> 111:warning:excess elements in struct initializer
> 111:warning:(near initialization for 'round robin')
> 113:warning:excess elements in struct initializer
> 111:warning:(near initialization for 'round robin')
>
> When I started APACHE and loaded web page in browser, doesn't show the web
> page.
> I saw logs/error.log and there is a SEGMENTATION FAULT.
>
> My httpd.conf:
>
> LoadModule proxy_balancer_rr_module modules/mod_lbmethod_rr.so
>
> ProxyPass /index1.php balancer://cluster1/
> ProxyPass /index2.php balancer://cluster2/
>
> <Proxy balancer://cluster1/>
> ProxySet lbmethod=roundrobin
> BalancerMember http://192.168.1.11/index1.php
> BalancerMember http://192.168.1.12/index1.php
> BalancerMember http://192.168.1.13/index1.php
> BalancerMember http://192.168.1.14/index1.php
> </Proxy>
>
> <Proxy balancer://cluster2/>
> ProxySet lbmethod=roundrobin
> BalancerMember http://192.168.1.15/index2.php
> BalancerMember http://192.168.1.16/index2.php
> </Proxy>
>
> I haven't problems with others algorithms.
>
> Ricardo
>
>
> On Sun, Jan 3, 2010 at 1:47 PM, Eric Covener <covener [at] gmail.com> wrote:
>
>> On Sun, Jan 3, 2010 at 6:46 AM, ricardo figueiredo
>> <ricardoogrande [at] gmail.com> wrote:
>> > I'd like to how I install a sub module.
>> > I'm trying to install mod_lbmethod_rr.c (Revision 774239).
>> > I install APACHE using the following:
>> > ./configure --prefix=/apache/path --enable-proxy --with-mpm=worker &&
>> make
>> > && make install
>>
>> Hrm, do you need to explicitly enable DSO support (--enable-so)?
>>
>> --
>> Eric Covener
>> covener [at] gmail.com
>>
>> ------------------------------------------------------------ ---------
>> The official User-To-User support forum of the Apache HTTP Server Project.
>> See <URL:http://httpd.apache.org/userslist.html> for more info.
>> To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
>> " from the digest: users-digest-unsubscribe [at] httpd.apache.org
>> For additional commands, e-mail: users-help [at] httpd.apache.org
>>
>>
>
>
> --
> Muito Obrigado
>
> Ricardo
>



--
Muito Obrigado

Ricardo

--00032555a2a2008367047c55fd33
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

Remember,<br><br>I haven't problems with the older revision (rev. 59465=
9)<br>I have problems with the newest revision (rev. 774239)<br><br>Ricardo=
<br><br><div class=3D"gmail_quote">On Mon, Jan 4, 2010 at 10:07 AM, ricardo=
figueiredo <span dir=3D"ltr"><<a href=3D"mailto:ricardoogrande [at] gmail.co=
m">ricardoogrande [at] gmail.com</a>></span> wrote:<br>
<blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, =
204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Well, I compiled =
mod_lbmethod_rr.c with APXS (apxs -a -i -c mod_lbmethod_rr.c)<br><div>Durin=
g compilation there were some WARNINGS<br>
<br><div>111:warning:excess elements in struct initializer</div><div>111:wa=
rning:(near initialization for 'round robin')</div>


<div>113:warning:excess elements=A0in struct initializer</div><div>111:warn=
ing:(near initialization for 'round robin')</div><div><br></div><di=
v>When I started APACHE and loaded web page in browser, doesn't show th=
e web page.<br>


I saw logs/error.log and there is a SEGMENTATION FAULT.<br><br>My httpd.con=
f:<br><br>LoadModule proxy_balancer_rr_module modules/mod_lbmethod_rr.so<br=
><br></div>
ProxyPass /index1.php balancer://cluster1/<br>ProxyPass /index2.php balance=
r://cluster2/<br><br><Proxy balancer://cluster1/><br>=A0=A0=A0=A0=A0=
=A0 ProxySet lbmethod=3Droundrobin<br>=A0=A0=A0=A0=A0=A0 BalancerMember <a =
href=3D"http://192.168.1.11/index1.php" target=3D"_blank">http://192.168.1.=
11/index1.php</a><br>


=A0=A0=A0=A0=A0=A0 BalancerMember <a href=3D"http://192.168.1.12/index1.php=
" target=3D"_blank">http://192.168.1.12/index1.php</a><br>=A0=A0=A0=A0=A0=
=A0 BalancerMember <a href=3D"http://192.168.1.13/index1.php" target=3D"_bl=
ank">http://192.168.1.13/index1.php</a><br>
=A0=A0=A0=A0=A0=A0 BalancerMember <a href=3D"http://192.168.1.14/index1.php=
" target=3D"_blank">http://192.168.1.14/index1.php</a><br>

</Proxy><br><br><Proxy balancer://cluster2/><br>=A0=A0=A0=A0=A0=
=A0 ProxySet lbmethod=3Droundrobin<br>=A0=A0=A0=A0=A0=A0 BalancerMember <a =
href=3D"http://192.168.1.15/index2.php" target=3D"_blank">http://192.168.1.=
15/index2.php</a><br>=A0=A0=A0=A0=A0=A0 BalancerMember <a href=3D"http://19=
2.168.1.16/index2.php" target=3D"_blank">http://192.168.1.16/index2.php</a>=
<br>


</Proxy><br></div><div><br>I haven't problems with others algorit=
hms.<br><br>Ricardo<div><div></div><div class=3D"h5"><br><br><div class=3D"=
gmail_quote">On Sun, Jan 3, 2010 at 1:47 PM, Eric Covener <span dir=3D"ltr"=
><<a href=3D"mailto:covener [at] gmail.com" target=3D"_blank">covener [at] gmail.c=
om</a>></span> wrote:<br>



<blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, =
204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div>On Sun, Jan =
3, 2010 at 6:46 AM, ricardo figueiredo<br>
<<a href=3D"mailto:ricardoogrande [at] gmail.com" target=3D"_blank">ricardoog=
rande [at] gmail.com</a>> wrote:<br>
</div><div>> I'd like to how I install a sub module.<br>
> I'm trying to install mod_lbmethod_rr.c (Revision 774239).<br>
> I install APACHE using the following:<br>
> ./configure --prefix=3D/apache/path --enable-proxy --with-mpm=3Dworker=
&& make<br>
> && make install<br>
<br>
</div>Hrm, do you need to explicitly enable DSO support (--enable-so)?<br>
<div><div></div><div><br>
--<br>
Eric Covener<br>
<a href=3D"mailto:covener [at] gmail.com" target=3D"_blank">covener [at] gmail.com</a=
><br>
<br>
------------------------------------------------------------ ---------<br>
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:<a href=3D"http://httpd.apache.org/userslist.html" target=3D"_b=
lank">http://httpd.apache.org/userslist.html</a>> for more info.<br>
To unsubscribe, e-mail: <a href=3D"mailto:users-unsubscribe [at] httpd.apache.or=
g" target=3D"_blank">users-unsubscribe [at] httpd.apache.org</a><br>
=A0 " =A0 from the digest: <a href=3D"mailto:users-digest-unsubscribe=
[at] httpd.apache.org" target=3D"_blank">users-digest-unsubscribe [at] httpd.apache.=
org</a><br>
For additional commands, e-mail: <a href=3D"mailto:users-help [at] httpd.apache.=
org" target=3D"_blank">users-help [at] httpd.apache.org</a><br>
<br>
</div></div></blockquote></div><br><br clear=3D"all"><br></div></div>-- <br=
>Muito Obrigado<br><br>Ricardo<br>
</div>
</blockquote></div><br><br clear=3D"all"><br>-- <br>Muito Obrigado<br><br>R=
icardo<br>

--00032555a2a2008367047c55fd33--
ricardo figueiredo [ Mo, 04 Januar 2010 13:37 ] [ ID #2027748 ]

Re: How install sub mod

On Mon, Jan 4, 2010 at 7:37 AM, ricardo figueiredo
<ricardoogrande [at] gmail.com> wrote:
> Remember,
>
> I haven't problems with the older revision (rev. 594659)
> I have problems with the newest revision (rev. 774239)

Do you mean all the rest of trunk, because mod_lbmethod_rr.c has never
been modified.

http://httpd.apache.org/dev/debugging.html

--
Eric Covener
covener [at] gmail.com

------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org
Eric Covener [ Mo, 04 Januar 2010 13:43 ] [ ID #2027749 ]

Re: How install sub mod

--00032555accab7fdb7047c563bc2
Content-Type: text/plain; charset=ISO-8859-1

I told that because have difference between both links:
link_1<tp://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_lbmethod_rr.c?view=markup&pathrev=594659>
and link_2<http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/examples/mod_lbmethod_rr.c?revision=774239&view=co&pathrev=774239>
I thought that link_2 was the newest version. Is that right ??

Ricardo

On Mon, Jan 4, 2010 at 10:43 AM, Eric Covener <covener [at] gmail.com> wrote:

> On Mon, Jan 4, 2010 at 7:37 AM, ricardo figueiredo
> <ricardoogrande [at] gmail.com> wrote:
> > Remember,
> >
> > I haven't problems with the older revision (rev. 594659)
> > I have problems with the newest revision (rev. 774239)
>
> Do you mean all the rest of trunk, because mod_lbmethod_rr.c has never
> been modified.
>
> http://httpd.apache.org/dev/debugging.html
>
> --
> Eric Covener
> covener [at] gmail.com
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
> " from the digest: users-digest-unsubscribe [at] httpd.apache.org
> For additional commands, e-mail: users-help [at] httpd.apache.org
>
>


--
Muito Obrigado

Ricardo

--00032555accab7fdb7047c563bc2
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

I told that because have difference between both links:=A0<a href=3D"tp://s=
vn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_lbm ethod_rr.c?view=
=3Dmarkup&pathrev=3D594659">link_1</a>=A0and=A0<a href=3D"http://svn.ap=
ache.org/viewvc/httpd/httpd/trunk/modules/proxy/examples/mod _lbmethod_rr.c?=
revision=3D774239&view=3Dco&pathrev=3D774239">link_2</a><div>
I thought that link_2 was the newest version. Is that right ??</div><div><b=
r></div><div>Ricardo</div><div><br><div class=3D"gmail_quote">On Mon, Jan 4=
, 2010 at 10:43 AM, Eric Covener <span dir=3D"ltr"><<a href=3D"mailto:co=
vener [at] gmail.com">covener [at] gmail.com</a>></span> wrote:<br>
<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
x #ccc solid;padding-left:1ex;"><div class=3D"im">On Mon, Jan 4, 2010 at 7:=
37 AM, ricardo figueiredo<br>
<<a href=3D"mailto:ricardoogrande [at] gmail.com">ricardoogrande [at] gmail.com</a=
>> wrote:<br>
> Remember,<br>
><br>
> I haven't problems with the older revision (rev. 594659)<br>
> I have problems with the newest revision (rev. 774239)<br>
<br>
</div>Do you mean all the rest of trunk, because mod_lbmethod_rr.c has neve=
r<br>
been modified.<br>
<br>
<a href=3D"http://httpd.apache.org/dev/debugging.html" target=3D"_blank">ht=
tp://httpd.apache.org/dev/debugging.html</a><br>
<font color=3D"#888888"><br>
--<br>
</font><div><div></div><div class=3D"h5">Eric Covener<br>
<a href=3D"mailto:covener [at] gmail.com">covener [at] gmail.com</a><br>
<br>
------------------------------------------------------------ ---------<br>
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:<a href=3D"http://httpd.apache.org/userslist.html" target=3D"_b=
lank">http://httpd.apache.org/userslist.html</a>> for more info.<br>
To unsubscribe, e-mail: <a href=3D"mailto:users-unsubscribe [at] httpd.apache.or=
g">users-unsubscribe [at] httpd.apache.org</a><br>
=A0 " =A0 from the digest: <a href=3D"mailto:users-digest-unsubscribe=
[at] httpd.apache.org">users-digest-unsubscribe [at] httpd.apache.org</a><br>
For additional commands, e-mail: <a href=3D"mailto:users-help [at] httpd.apache.=
org">users-help [at] httpd.apache.org</a><br>
<br>
</div></div></blockquote></div><br><br clear=3D"all"><br>-- <br>Muito Obrig=
ado<br><br>Ricardo<br>
</div>

--00032555accab7fdb7047c563bc2--
ricardo figueiredo [ Mo, 04 Januar 2010 13:55 ] [ ID #2027750 ]

Re: How install sub mod

On Mon, Jan 4, 2010 at 7:55 AM, ricardo figueiredo
<ricardoogrande [at] gmail.com> wrote:
> I told that because have difference between both links:=A0link_1=A0and=A0=
link_2
> I thought that link_2 was the newest version. Is that right ??
> Ricardo

Sorry, I was mistaken.


--
Eric Covener
covener [at] gmail.com

------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org
Eric Covener [ Mo, 04 Januar 2010 14:42 ] [ ID #2027752 ]

Re: How install sub mod

--00032555a27e66ebd4047c56f726
Content-Type: text/plain; charset=ISO-8859-1

So, I've had problems with the newest version.
Happened some SEGMENTATION FAULT.

Have any idea ??
Ricardo

On Mon, Jan 4, 2010 at 11:42 AM, Eric Covener <covener [at] gmail.com> wrote:

> On Mon, Jan 4, 2010 at 7:55 AM, ricardo figueiredo
> <ricardoogrande [at] gmail.com> wrote:
> > I told that because have difference between both links: link_1 and link_2
> > I thought that link_2 was the newest version. Is that right ??
> > Ricardo
>
> Sorry, I was mistaken.
>
>
> --
> Eric Covener
> covener [at] gmail.com
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
> " from the digest: users-digest-unsubscribe [at] httpd.apache.org
> For additional commands, e-mail: users-help [at] httpd.apache.org
>
>


--
Muito Obrigado

Ricardo

--00032555a27e66ebd4047c56f726
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

So, I've had problems with the newest version.<div>Happened some SEGMEN=
TATION FAULT.</div><div><br></div><div>Have any idea ??</div><div>Ricardo<b=
r><br><div class=3D"gmail_quote">On Mon, Jan 4, 2010 at 11:42 AM, Eric Cove=
ner <span dir=3D"ltr"><<a href=3D"mailto:covener [at] gmail.com">covener [at] gmai=
l.com</a>></span> wrote:<br>
<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
x #ccc solid;padding-left:1ex;"><div class=3D"im">On Mon, Jan 4, 2010 at 7:=
55 AM, ricardo figueiredo<br>
<<a href=3D"mailto:ricardoogrande [at] gmail.com">ricardoogrande [at] gmail.com</a=
>> wrote:<br>
> I told that because have difference between both links:=A0link_1=A0and=
=A0link_2<br>
> I thought that link_2 was the newest version. Is that right ??<br>
> Ricardo<br>
<br>
</div>Sorry, I was mistaken.<br>
<font color=3D"#888888"><br>
<br>
--<br>
</font><div><div></div><div class=3D"h5">Eric Covener<br>
<a href=3D"mailto:covener [at] gmail.com">covener [at] gmail.com</a><br>
<br>
------------------------------------------------------------ ---------<br>
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:<a href=3D"http://httpd.apache.org/userslist.html" target=3D"_b=
lank">http://httpd.apache.org/userslist.html</a>> for more info.<br>
To unsubscribe, e-mail: <a href=3D"mailto:users-unsubscribe [at] httpd.apache.or=
g">users-unsubscribe [at] httpd.apache.org</a><br>
=A0 " =A0 from the digest: <a href=3D"mailto:users-digest-unsubscribe=
[at] httpd.apache.org">users-digest-unsubscribe [at] httpd.apache.org</a><br>
For additional commands, e-mail: <a href=3D"mailto:users-help [at] httpd.apache.=
org">users-help [at] httpd.apache.org</a><br>
<br>
</div></div></blockquote></div><br><br clear=3D"all"><br>-- <br>Muito Obrig=
ado<br><br>Ricardo<br>
</div>

--00032555a27e66ebd4047c56f726--
ricardo figueiredo [ Mo, 04 Januar 2010 14:47 ] [ ID #2027754 ]

Re: How install sub mod

On Mon, Jan 4, 2010 at 8:47 AM, ricardo figueiredo
<ricardoogrande [at] gmail.com> wrote:
> So, I've had problems with the newest version.
> Happened some SEGMENTATION FAULT.
> Have any idea ??

See the debugging link in previous response.

--
Eric Covener
covener [at] gmail.com

------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org
Eric Covener [ Mo, 04 Januar 2010 14:53 ] [ ID #2027755 ]

Re: How install sub mod

--00032555a27ee74d18047c57101f
Content-Type: text/plain; charset=ISO-8859-1

OK !!

Ricardo

On Mon, Jan 4, 2010 at 11:53 AM, Eric Covener <covener [at] gmail.com> wrote:

> On Mon, Jan 4, 2010 at 8:47 AM, ricardo figueiredo
> <ricardoogrande [at] gmail.com> wrote:
> > So, I've had problems with the newest version.
> > Happened some SEGMENTATION FAULT.
> > Have any idea ??
>
> See the debugging link in previous response.
>
> --
> Eric Covener
> covener [at] gmail.com
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
> " from the digest: users-digest-unsubscribe [at] httpd.apache.org
> For additional commands, e-mail: users-help [at] httpd.apache.org
>
>


--
Muito Obrigado

Ricardo

--00032555a27ee74d18047c57101f
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

OK !!<div><br></div><div>Ricardo<br><br><div class=3D"gmail_quote">On Mon, =
Jan 4, 2010 at 11:53 AM, Eric Covener <span dir=3D"ltr"><<a href=3D"mail=
to:covener [at] gmail.com">covener [at] gmail.com</a>></span> wrote:<br><blockquot=
e class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc sol=
id;padding-left:1ex;">
<div class=3D"im">On Mon, Jan 4, 2010 at 8:47 AM, ricardo figueiredo<br>
<<a href=3D"mailto:ricardoogrande [at] gmail.com">ricardoogrande [at] gmail.com</a=
>> wrote:<br>
> So, I've had problems with the newest version.<br>
> Happened some SEGMENTATION FAULT.<br>
> Have any idea ??<br>
<br>
</div>See the debugging link in previous response.<br>
<font color=3D"#888888"><br>
--<br>
</font><div><div></div><div class=3D"h5">Eric Covener<br>
<a href=3D"mailto:covener [at] gmail.com">covener [at] gmail.com</a><br>
<br>
------------------------------------------------------------ ---------<br>
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:<a href=3D"http://httpd.apache.org/userslist.html" target=3D"_b=
lank">http://httpd.apache.org/userslist.html</a>> for more info.<br>
To unsubscribe, e-mail: <a href=3D"mailto:users-unsubscribe [at] httpd.apache.or=
g">users-unsubscribe [at] httpd.apache.org</a><br>
=A0 " =A0 from the digest: <a href=3D"mailto:users-digest-unsubscribe=
[at] httpd.apache.org">users-digest-unsubscribe [at] httpd.apache.org</a><br>
For additional commands, e-mail: <a href=3D"mailto:users-help [at] httpd.apache.=
org">users-help [at] httpd.apache.org</a><br>
<br>
</div></div></blockquote></div><br><br clear=3D"all"><br>-- <br>Muito Obrig=
ado<br><br>Ricardo<br>
</div>

--00032555a27ee74d18047c57101f--
ricardo figueiredo [ Mo, 04 Januar 2010 14:54 ] [ ID #2027758 ]
Webserver » gmane.comp.apache.user » How install sub mod

Vorheriges Thema: Proxy Errror
Nächstes Thema: mod_ssl: SSL handshake is done on every request