[EMAIL PROTECTED] Cluster Question

2005-10-03 Thread Brian
entry point. So as I understand it, I need to install Apache on both Box A and Box B. What esle do I need to do to get this up and running? Is it just a matter of the config files? What would thoses settings look like? Thanks for any help/direction.

[EMAIL PROTECTED] Apache 2.2.8 VirtuaHost and a NAS

2008-03-03 Thread Brian
ct reference the local NAS device IP via \\\share\test\ but I am unsure how that would be entered for Apache. Thoughts? Thanks. Brian - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apac

RE: [EMAIL PROTECTED] Apache 2.2.8 VirtuaHost and a NAS

2008-03-04 Thread Brian
MAIL PROTECTED] Sent: Tuesday, March 04, 2008 3:13 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Apache 2.2.8 VirtuaHost and a NAS Hi On Mon, 2008-03-03 at 21:10 -0900, Brian wrote: > DocumentRoot "L:/test" W

RE: [EMAIL PROTECTED] Apache 2.2.8 VirtuaHost and a NAS

2008-03-04 Thread Brian
William A. Rowe, Jr. wrote: >Joshua Slive wrote: >> On Tue, Mar 4, 2008 at 7:13 AM, Graeme Fowler <[EMAIL PROTECTED]> wrote: >>> Hi >>> >>> On Mon, 2008-03-03 at 21:10 -0900, Brian wrote: >>> > DocumentRoot "L:/test" >>>

[EMAIL PROTECTED] Slow/incomplete response on subsequent dynamic page reloads

2008-05-20 Thread Brian
ame behavior, even a test page displaying phpinfo(). Any ideas on how to troubleshoot, or what the problem might be? Anyone suspect that this might not be an Apache problem, but a PHP problem instead? Caching issue? --Brian

[users@httpd] Problem with suexec in apache 2.4

2014-07-19 Thread brian
erver"./ /I can run php without suexec when I link directly to the php in /usr/local. / /I'm trying to replace suphp. I'm open to other options. / /Brian/

[us...@httpd] Shared DavLockDB between servers?

2009-05-14 Thread Brian McElroy
ockDB to a shared location on the nfs share, but our developers are still able to check out files in Dreamweaver that are already locked if they don't hit the same server the file was originally checked out on. Brian ---

[us...@httpd] IPv4 -> IPv6 name based proxy?

2009-05-29 Thread Brian Kroth
est to? Thanks, Brian - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org "

[us...@httpd] Question about how to fetch html?

2009-06-12 Thread Brian Kim
Hi all. Currently I am creating a http-based proxy system to fetch a html data between users' browser ans web server. In fact, I did it by adding some code in ap_proxy_http_process_response function as follows Here is a part of ap_proxy_http_process_response function and I added some code to see

Re: [us...@httpd] Question about how to fetch html?

2009-06-12 Thread Brian Kim
the html data. I am looking for the way of implementing it. Does André or anybody have any idea? On Fri, Jun 12, 2009 at 5:15 PM, André Warnier wrote: > Brian Kim wrote: >> >> Hi all. >> > Hi Brian. > >> Currently I am creating a http-based proxy system to fetch

[us...@httpd] How to modify ap_proxy_http_process_response in mod_proxy_http.c

2009-06-22 Thread Brian Kim
Hi. All. Here is a part of ap_proxy_http_process_response function. static apr_status_t ap_proxy_http_process_response(. ) { do { apr_off_t readbytes; apr_status_t rv; rv = ap_get_brigade(rp->input_filters, bb, AP_MODE_READBYTES, mode,

[us...@httpd] global variable use in mod_proxy_http.c

2009-06-24 Thread Brian Kim
Hi. All. In mod_proxy_http.c, I globally declared a variable, like unsiged int count = 0; And I make it increase whenever the proxy gets a new http request. I expect it increases like 1, 2, 3, 4,... but it is always same 1. Does anydoby know why this happens? How can I use a global variable in

Re: [us...@httpd] global variable use in mod_proxy_http.c

2009-06-24 Thread Brian Kim
Thanks to Sander & André, I clearly understood why it happened and how I can get it over. Now I am looking at an example,.mod_example_ipc.c, to use a shared memory space. Thanks again. On Wed, Jun 24, 2009 at 5:31 PM, André Warnier wrote: > Brian Kim wrote: >> >>

[us...@httpd] Shared Memory Size?

2009-07-01 Thread Brian Kim
Hi all Due to some fellows' advice, I got to know we cannot use a global variable as we do in a single program. Now I use an example, "mod_example_ipc.c" to use the shared memory. The shared memory is containing user specific data for each ip accessing to my proxy server. I was wondering about

Re: [us...@httpd] Shared Memory Size?

2009-07-01 Thread Brian Kim
009 at 5:47 PM, Lyle Wincentsen wrote: > I don't know what the limit on shared memory would be, but it seems like > what you're describing is exactly what "sessions" are for. > > On Wed, Jul 1, 2009 at 3:51 PM, Brian Kim <09su.resea...@gmail.com> wrote: >> >>

Re: [us...@httpd]

2009-07-06 Thread Brian Mearns
The answer is 12. On Mon, Jul 6, 2009 at 4:03 AM, John Winther wrote: > help -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://keys.gnupg.net - The official User-To-User support forum

[us...@httpd] Invalid ELF Header?

2009-07-09 Thread Brian Kim
Hi. all. I tried to add hash library(polarssl) to apache, but I got the Invalid ELF Header error when I began proxy module. Is there anybody who knows the reason? Is it a library problem? Thanks in advance - The official User-T

[us...@httpd] Transparent Proxy?

2009-07-20 Thread Brian Kim
Hi all. I am trying to make the current proxy into transparent one. I got to know I may need to use squid software. Is it right? Is there anybody who can explain how to implement transparent proxy? Is there any good tutorial or good starting point? Thanks.

[us...@httpd] Transparent Proxy Server Installation

2009-07-21 Thread Brian Kim
Hi. All. I am a beginner. So I really need somebody's help. I have asked a question about the transparent http apache server. Nobody answers it yet, so I ask it again and add what I have done until now. I have set up a server to have two ethernet interface. One is connected to a swtich to get al

Re: [us...@httpd] Transparent Proxy Server Installation

2009-07-22 Thread Brian Kim
Tue, Jul 21, 2009 at 6:24 PM, André Warnier wrote: > Brian Kim wrote: > ... > I don't know about "transparent proxy", but I think what you are talking > about is a "forward proxy". > Have you read this on-line Apache documentation ? > > http://httpd.a

Re: [us...@httpd] Transparent Proxy Server Installation

2009-07-22 Thread Brian Kim
The big picture for my http proxy is to install it to ISP level. It means users must not need to set up the proxy configuration In that sense, I thought a reverse proxy seems to be the transparent proxy. Is it right? On Wed, Jul 22, 2009 at 1:20 PM, Nick Kew wrote: > Brian Kim wrote: >&

Re: [us...@httpd] Transparent Proxy Server Installation

2009-07-22 Thread Brian Kim
. On Wed, Jul 22, 2009 at 6:04 PM, André Warnier wrote: > Brian Kim wrote: >> >> The big picture for my http proxy is to install it to ISP level. >> >> It means users must not need to set up the proxy configuration >> >> In that sense, I thought a reverse pro

Re: [us...@httpd] Transparent Proxy Server Installation

2009-07-23 Thread Brian Kim
? On Thu, Jul 23, 2009 at 5:27 AM, André Warnier wrote: > Brian Kim wrote: >> >> Hi all. >> >> The basic configuration is as follows >> >>  (1)               (2)                       (3)                    (4) >> Users switch (eth2

[us...@httpd] How to Release Apache?

2009-08-10 Thread Brian Kim
Hi all. Until now, I just downloaded source code, modified some of them(mostly, mod_http_proxy.c) and finished adding some functionality. In the meantime, I tested it by getting my web browser to have local host IP as its proxy server. Now it is time to release the apache to other testers who ma

Re: [us...@httpd] How to Release Apache?

2009-08-10 Thread Brian Kim
any advice, but make sure to clearly > state this isn't released by the ASF but by a 3rd party > It's probably a good idea to read "Licensing of Distributions " > section of http://apache.org/licenses/ as wel. > > > ~Jorge > > > > On Mon, Aug 10, 2009 a

[us...@httpd] Is it okay to not use exportable ciphers?

2009-08-20 Thread Brian Mearns
tside the US) be able to support the stronger (non-exportable) ciphers? Thanks, -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://keys.gnupg.net - The official User-To-User support

Re: [us...@httpd] Is it okay to not use exportable ciphers?

2009-08-20 Thread Brian Mearns
On Thu, Aug 20, 2009 at 3:24 PM, Sander Temme wrote: > > On Aug 20, 2009, at 3:16 PM, Brian Mearns wrote: > >> For the sake of security, I'd like to configure my SSL/TLS server to >> not allow export level ciphers (using the SSLCipherSuite directive). >> Is this

[us...@httpd] How to distinguish the first web page?

2009-08-25 Thread Brian Kim
Hi. Currently I am using mod_proxy_http module for http apache. I would like to know how to get the very first page(text/html type) among a series of returned pages. For example, the following is a html of a site, www.foo.com. It has two iframe in itself. We get a html of www.

[us...@httpd] How to add a user-defined thread to apache module?

2009-08-25 Thread Brian Kim
Hi. all. I am currently working on mod_proxy & mod_proxy_http. I would like to add my own thread to the apache. As I did in other general program, I tried to use POSIX threads programming(e.g.pthread_create), but it does not seem to work. The reason why I need that thread is to clean unusefuly

Re: [us...@httpd] How to distinguish the first web page?

2009-08-26 Thread Brian Kim
in apache? Or Any other suggestion? On Wed, Aug 26, 2009 at 4:08 AM, Krist van Besien wrote: > On Tue, Aug 25, 2009 at 11:54 PM, Brian Kim<09su.resea...@gmail.com> wrote: >> Hi. >> >> Currently I am using mod_proxy_http module for http apache. >> I would like t

[us...@httpd] Question about conditional logging

2009-08-31 Thread Brian Hirt
y. One idea is to create a 403 page in the application that handles the logging i'm looking for, and have the proxy do an internal redirect to the application instead of stopping it during the rewrite phase with a "Rewrite

Re: [us...@httpd] Question about conditional logging

2009-08-31 Thread Brian Hirt
Thank you, I was only looking at the core apache logging, not the mod_rewrite logging. I'll check this out. Kind Regards, Brian On Aug 31, 2009, at 11:12 AM, Eric Covener wrote: On Mon, Aug 31, 2009 at 12:54 PM, Brian Hirt wrote: Hi, From the best I can tell, the conditional lo

[us...@httpd] Multiple authentication sources (OUs) - AuthnProviderAlias

2009-10-26 Thread Brian Banaszynski
eem to work. I know your thinking - "why not just use groups"? Ans: Simply because we don't want to have to maintain groups for our many clients. We would like to rely on the client user's presence in the OU (and allow our service accounts and support personnel at the same time to all sites) Is this a bug or is there a better way to accomplish this? Regards, Brian

[us...@httpd] Limit output filter by response code

2009-10-31 Thread Brian Mearns
ameter, for instance), then I can make the decision there. Any help would be really great. Thanks, -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://keys.gnupg.net - The official

Re: [us...@httpd] pdf report generation - content type text/html

2009-11-03 Thread Brian Mearns
wise is usually text/html, as you found, but you can use the header() function to send the CT header like: header("Content-Type: application/pdf"). -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://keys.gnupg.net --

Re: [us...@httpd] pdf report generation - content type text/html

2009-11-03 Thread Brian Mearns
g fine. I suspect something is wrong in the apache config. I also > checked mime.types file which includes pdf entry. > > On Tue, Nov 3, 2009 at 2:32 PM, Brian Mearns wrote: >> >> On Tue, Nov 3, 2009 at 2:26 PM, Marcin 'Rambo' Roguski >> wrote: >> > O

[us...@httpd] Conditional behavior by status code

2009-11-04 Thread Brian Mearns
different filters based on the status code. If there is any way to set an environment variable based on the status code, that would work as well. Thanks, -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://keys.gnupg.net

Re: [us...@httpd] apache configuration: always go to parent directory

2009-11-10 Thread Brian Mearns
xperiment/index.php, doesn't exist. On a probably unrelated note, is there a reason you have an alias set up for your document root? Aliases are usually used to make directories that are not under the DocumentRoot available through the web server, or sometimes to give alternate URLs to con

Re: [us...@httpd]

2009-11-10 Thread Brian Mearns
ou'll need to get much more sophisticated. Some sort of user-authentication (i.e., "log in") is a must for this, and you'll need to be very careful about people snooping cookies and log-in date (like, only use secure HTTPS connections). -Brian -- Feel free to contact me using PG

Re: [us...@httpd] Caching files on reverse proxy

2009-11-10 Thread Brian Mearns
way where you can just browse to the cache directory and look for *.pdf files. They're typically stored based on some sort of hashing mechanism so they can be quickly recovered. -Brian -- Feel free to contact me using PGP Encryption

Re: [us...@httpd]

2009-11-10 Thread Brian Mearns
o and there's a good chance someone can help you, as long as you're willing to let go of any preconceived notions on how to get the job done (that's always the biggest stumbling block to learning something new). Cheers, -Brian -- Feel free to contact me using PGP Encryption: Key

Re: [us...@httpd]

2009-11-10 Thread Brian Mearns
L. But either way, you're relying on the end user to cooperate (i.e., send back the same identifier). If you're looking for something that they can't reasonably fake or alter without your knowing, you'll need a crypto protocol like TLS (again, see my last message). -Brian --

Re: [us...@httpd] apache configuration: always go to parent directory

2009-11-10 Thread Brian Mearns
On Tue, Nov 10, 2009 at 10:00 PM, J. Bakshi wrote: > Brian Mearns wrote: >> On Tue, Nov 10, 2009 at 4:43 AM, J. Bakshi wrote: >> >>> Hello, >>> >>> I have configured a personal work-space for mine in apache where I can >>> experiment

Re: [us...@httpd]

2009-11-11 Thread Brian Mearns
th that as well. But either way, you are relying on the user to send the information back in tact. If you can't trust your end users to do that and it's important that you know for sure, you will need TLS or SSL. I can hep you get started with these, but there are others on this list wit

Re: [us...@httpd] SPDY protocol

2009-11-13 Thread Brian Mearns
, if it does start going anywhere promising, it probably would be a good thing to support in Apache. One day, HTTP may go the way of the Gopher. Hey, maybe Google could provide some funding and/or other partnership benefits to the Apache Foundation in order to speed up adoption of their pet proto

Re: [us...@httpd] SPDY protocol

2009-11-13 Thread Brian Mearns
On Fri, Nov 13, 2009 at 11:15 AM, David Henderson wrote: > I would vote to make it a module over a patch due to Brian Mearns making a > good point about it possibly not moving beyond the IEFT.  At least a modular > design can just be dropped from the operation of the server without ha

Re: [us...@httpd] Just curious on SPDY

2009-11-17 Thread Brian Mearns
n't see the difference as a user other than the potential speed benefits. Just to be clear, SPDY is far from being a new web-standard. Right now, it's just a research project Google is undertaking: I think it's going to be quite a while (a year at minimum) before any one (other than G

Re: [us...@httpd] Just curious on SPDY

2009-11-17 Thread Brian Mearns
On Tue, Nov 17, 2009 at 9:55 AM, Mike Cardwell wrote: > Brian Mearns wrote: > >>>>           Just curious to know whether  Google announcement on SPDY >>>> http://blog.chromium.org/2009/11/2x-faster-web.html needs change only in >>>> Apache web serve

Re: [us...@httpd] how to install gcc required for apache 2.2 on RHEL 4

2009-11-19 Thread Brian Mearns
you should be able to use yum, like `yum install gcc`, as the super user. As Phil said, you can also install apache directly with `yum install httpd` (notice the package isn't called apache). -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://ke

Re: [us...@httpd] Name virtual hosts and HTTPS

2009-11-21 Thread Brian Mearns
version running on an OS earlier than Vista do not (if I'm remembering correctly). Those clients will always see the same cert no matter what name based vhost they go to. It's a bummer, but a well known limitation of SSL. -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x

Re: [us...@httpd] Name virtual hosts and HTTPS

2009-11-22 Thread Brian Mearns
his. I just spent a few hours a couple of day ago upgrading to 2.2.14 so I could do exactly this. -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://keys.gnupg.net -

[us...@httpd] Lightweight apache for fast proxying

2009-11-22 Thread Brian Mearns
d server lightweight), or suggest better alternatives to using apache for this, I'd really appreciate it. Thanks, -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://keys.gnupg.net

Re: [us...@httpd] how to get multiple SSL with name based vhost ?

2009-12-01 Thread Brian Mearns
g files. [snip] That's only if he has multiple IP addresses available on the network, right? If we assume this is a public sever, that means he needs multiple public IP addresses from his ISP that route to this server. That's certainly a possibility, in general, but I want to make sure

[us...@httpd] href="frag.php&field=value" gets error 404.

2009-12-05 Thread Brian Hooper
log. Could anyone point me to a web page that explains what I need to do here? Thank you for your attention. Brian Hooper _ Use Hotmail to send and receive mail from your different e

RE: [us...@httpd] Re: href="frag.php&field=value" gets error 404.

2009-12-06 Thread Brian Hooper
Thank you for your help, ladies and gentlemen. I'd only been staring all day at that stupid mistake. Rgds, Brian Hooper From: krem...@kreme.com To: users@httpd.apache.org Date: Sat, 5 Dec 2009 17:20:47 -0700 Subject: [us...@httpd] Re: href="frag.php&field=value" gets e

[us...@httpd] Compiling Apache 2.2.14 on 64 bit AIX 6.1

2009-12-08 Thread Brian Gaber
After I build and install Apache in the /modules/ directory I have paired files like libmod_dbd.a and mod_dbd.la. The httpd.conf has all modules with a .so extension. Have I compiled incorrectly? Here is the compile environment: export CC="cc_r -q64" export CFLAGS="-qmaxmem=16384 -DSYS

RE: [us...@httpd] Compiling Apache 2.2.14 on 64 bit AIX 6.1

2009-12-08 Thread Brian Gaber
> Google can find the thread titled "problem with build on AIX 6.1" from the development list. Thanks, this gave me the information to fix my problem: http://www.mail-archive.com/d...@httpd.apache.org/msg45729.html I replaced the four Apache httpd config.guess with the AutoMake config.guess that

[us...@httpd] On 64 bit AIX 6.1 Apache 2.2.14 Not Responding

2009-12-09 Thread Brian Gaber
Compiled using this environment: export CC="xlc -q64" export CFLAGS="-qmaxmem=16384 -DSYSV -D_AIX61 -D_ALL_SOURCE -DFUNCPROTO=15 -O -I/opt/freeware/include" export CXX="xlC" export CXXFLAGS=$CFLAGS export LD=ld export LDFLAGS="-L/opt/freeware/lib" export OBJECT_MODE=64 Compiled a

RE: [us...@httpd] On 64 bit AIX 6.1 Apache 2.2.14 Not Responding

2009-12-09 Thread Brian Gaber
> Did you ensure that the Listen directive is set? I left the default which is: Listen 80 - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To

[us...@httpd] "Perfect" Transparent Proxy Setup?

2010-01-18 Thread Brian Kim
Hi. All. I am thinking a proxy system like a magic box. Let's say that we have a gateway where an interface 0 is for internal network and an interface 1 is for outsite. In front of the gateway, I would like to install my proxy system with two interface cards(interface 3 and interface 4) and to ma

[us...@httpd] SSL Reverse Proxy

2010-01-26 Thread Brian Mearns
prove speed and avoid the increased drain on my entropy pool. Are these realistic concerns, or would the effect be negligible? Any help would be greatly appreciated. Thanks, -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available fr

Re: [us...@httpd] SSL Reverse Proxy

2010-01-29 Thread Brian Mearns
On Thu, Jan 28, 2010 at 5:34 AM, Matus UHLAR - fantomas wrote: > On 26.01.10 15:28, Brian Mearns wrote: >> I'm looking for some clarification on how to setup a reverse proxy >> that supports SSL/TLS. My understanding is as follows (please correct >> me if I'm wro

Re: [us...@httpd] proxy chaining to squid

2010-02-01 Thread Brian Mearns
have a look > at http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxyremote as a > forward proxy would be more effective than a reverse, the latter only > forwards requests to configured origin servers. > Last, but it seems ok in your config, this "forward proxy" setup sh

[EMAIL PROTECTED] export.c build errors - many "solutions" found, none worked.

2008-09-01 Thread Brian Mearns
got the same errors and warnings. All of the proposed solutions I've found online are that the path contains symlinks, or that the build is trying to go over an existing installation, but neither or those apply in this case. If anyone can help me, I'd really

Re: [EMAIL PROTECTED] export.c build errors - many "solutions" found, none worked.

2008-09-01 Thread Brian Mearns
Nope, thanks anyway but that's not it either. It's a local drive. -Brian > Don't configure on an NFS-mounted filesystem. > > If you have only an NFS-mounted home directory at your > disposal, there's always /tmp. If you need debugging > in your executable

Re: [EMAIL PROTECTED] Why do I need /var/www as DocumentRoot & www-data as www owner?

2008-09-02 Thread Brian Mearns
t, as you're beginning to see now, it /always/ comes back to bite you in the long run. Not that it does you any good now, but it's something you'll probably remember in the future. Best of luck -Brian - The of

[EMAIL PROTECTED] Re: exports.c: duplicate sections RESOLVED (sort of)

2008-09-27 Thread Brian Mearns
I resolved the issue by simply removing all traces of my old apr and apr-util, and just using the packaged versions. So help is no longer needed, but for those having the same issue, I can't offer any additional assistance. -Brian > Follow up: I found the problem, but still don't kn

Re: [EMAIL PROTECTED] Cannot connect to apache from outside machines

2008-09-30 Thread Brian Mearns
myipaddress.com. Best of luck -Brian On Mon, Sep 29, 2008 at 10:05 PM, Nilesh Govindrajan <[EMAIL PROTECTED]> wrote: > check the logs > > On Tue, Sep 30, 2008 at 4:48 AM, <[EMAIL PROTECTED]> wrote: >> >> Ok done all the research I can, time for some collabor

Re: [EMAIL PROTECTED] Cannot connect to apache from outside machines

2008-09-30 Thread Brian Mearns
t be able to connect: many office and university networks limit the ports their users can connect to, figuring that they only have legitimate business connecting to a handful of standard ports like web and email. -Brian On Tue, Sep 30, 2008 at 11:24 AM, <[EMAIL PROTECTED]> wrote: > Should

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread Brian Mearns
t it sounds like virtual hosts might be sufficient for what you need. You don't actually need different apache services to run different sites at the same time. Hope that helps. -Brian On Tue, Sep 30, 2008 at 3:36 PM, jwberger <[EMAIL PROTECTED]> wrote: > > I am novice when it comes

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread Brian Mearns
ade are correct, copy the changes to your real server, and do a quick restart. It only takes a few seconds for the apache server to restart: is that too long to keep all your sites down? -Brian On Tue, Sep 30, 2008 at 3:55 PM, jwberger <[EMAIL PROTECTED]> wrote: > > They are bound to one

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread Brian Mearns
Well look at that. Thanks for correcting me, even if you did it rather unpleasantly. It's always nice to learn something new. That's why I try to preface my comments with soft phrases like "to the best of my knowledge". -Brian > > You seem to be getting quite a bit of

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread Brian Mearns
Some ISPs don't block port 80 for residential accounts, either. I'm on Comcast in the Boston area, and (for now) I've got port 80 free. They did just start blocking 25, though, so they might be coming for 80 next. -Brian On Tue, Sep 30, 2008 at 5:31 PM, Frank Gingras <[EMAIL

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-09-30 Thread Brian Mearns
ee your IP address for security reasons? Or just because it's ugly and utterly forgettable? If it's for security reasons, and they're connecting directly to your site through the domain forwarding (i.e., not through a proxy), then they should be able to get your IP address anyway w

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-10-01 Thread Brian Mearns
dns, you can just buy a 5$ a year domain name of your own. Plus, additional bandwidth. -Brian On Tue, Sep 30, 2008 at 8:05 PM, <[EMAIL PROTECTED]> wrote: > We are using dydns too. We can append the port number, sure. that sucks for > users though. (thats why we use webhop)maybe we sh

Re: [EMAIL PROTECTED] Running Multiple Windows Services on port 8080

2008-10-01 Thread Brian Mearns
That's pretty wild that they don't even let businesses host their own sites. I'd complain to them long before I complain to dyndns. They must have some account that lets you use port 80, right? -Brian On Wed, Oct 1, 2008 at 7:20 AM, <[EMAIL PROTECTED]> wrote: > Brian,

Re: [EMAIL PROTECTED] Apache server - Output to the same page whatever request

2008-10-09 Thread Brian Mearns
thing, but whether it is or not, the QSA option should do what you want. Hope that helps. -Brian - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for

Re: [EMAIL PROTECTED] Thanks ALOT!!!

2008-10-10 Thread Brian Mearns
see http://httpd.apache.org/docs/2.2/urlmapping.html. For rewriting specifically, try http://httpd.apache.org/docs/2.2/rewrite/. For even more general info on how the server works, read through the reference manual, available from the main doc page at http://httpd.apache.org/docs/2.2

Re: [EMAIL PROTECTED] Managed! thanks

2008-10-14 Thread Brian Mearns
Pleas try to avoid changing the subject line when following up on a message. It gets very confusing to keep track of the threads. Thanks! -Brian On Tue, Oct 14, 2008 at 4:14 PM, MierMier <[EMAIL PROTECTED]> wrote: > > > > MierMier wrote: >> >> >> >>

Re: [EMAIL PROTECTED] Redirect/ReWrite config for multiple domains to different pages

2008-10-15 Thread Brian Mearns
will never get to your server. Hope that helps, -Brian On Wed, Oct 15, 2008 at 6:24 AM, Paul Robson <[EMAIL PROTECTED]> wrote: > Having read the Apache and mod_ReWrite docs I can't see how to setup the > below secienario and Google searches are fruitless as I'm not qui

[EMAIL PROTECTED] Determine file system directory in DirectoryIndex script

2008-10-15 Thread Brian Mearns
esn't know the directory to index. Thanks, -Brian - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [EMAIL PROT

Re: [EMAIL PROTECTED] Rewriting URLs to remove .html extension

2008-10-15 Thread Brian Mearns
It looks like %{REQUEST_FILENAME} is the /full/ system path to the file, so I think the %{DOCUMENT_ROOT} is incorrect there. I'm not familiar with RewriteCond's, but personally I would try removing the DOCUMENT_ROOT from that condition. Good luck. -Brian On Wed, Oct 15, 2008 a

Re: [EMAIL PROTECTED] Please reply ...Requesting Counting = Round Robin ???

2008-10-17 Thread Brian Mearns
n the subject is redundant and tends to annoy a lot of people. Hope someone can help you with your proxy problem. Good luck. -Brian On Thu, Oct 16, 2008 at 6:43 PM, ricardo13 <[EMAIL PROTECTED]> wrote: > > hi, > > I wanted know if algorithm scheduler "Request Counting" of

Re: [EMAIL PROTECTED] how to uninstall httpd-2.2.10

2008-10-23 Thread Brian Mearns
, though. Good luck, -Brian On Wed, Oct 22, 2008 at 9:02 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: >> Hello All, >> >> I've compile and installed apache-2.2.10 from source and would like to >> remove it from my system. I noti

Re: [EMAIL PROTECTED] Running programs...

2008-11-06 Thread Brian Mearns
apache or your configuration. Perhaps the program is trying to access some files or libraries that no longer exist since the upgrade? -Brian - The official User-To-User support forum of the Apache HTTP Server Project

Re: [EMAIL PROTECTED] How to connect from a remote machine

2008-11-22 Thread Brian Mearns
want to access your system from anywhere, you'll need to use something like dyndns (dyndns.com) to map a [sub]domain name (like alberts_server.homeip.net, or something) to your IP address, and automatically update this mapping when your IP changes. Hope that helps. -Brian On Sat, Nov 22, 2008

Re: [EMAIL PROTECTED] How to connect from a remote machine

2008-11-23 Thread Brian Mearns
Just so there's no confusion, I believe what André is saying is that if its not part of a network, then you can't connect to it, however the Internet is a network, so if you're connected to that, you're fine. -Brian On Sun, Nov 23, 2008 at 8:35 AM, André Warnier <[

Re: [EMAIL PROTECTED] How to connect from a remote machine

2008-11-24 Thread Brian Mearns
onnect on it. Hope that helps, let us know how it goes. -Brian On Mon, Nov 24, 2008 at 1:06 AM, Albert Joseph <[EMAIL PROTECTED]> wrote: > > Steve Reilly, > > Thank you. I am reading http://portforward.com/routers.htm which has much > information that I hope will lead to

Re: [EMAIL PROTECTED] Repost: is this the right list ??? Need "configure" directive to static link libssl.a on AIX 5.3

2008-11-24 Thread Brian Mearns
Sorry, I can't help you, but yes, this is the write lis, so hopefully someone else can. -Brian On Mon, Nov 24, 2008 at 10:47 AM, Bennett, Tony <[EMAIL PROTECTED]> wrote: > Version:Apache httpd version 2.2.10 > Platform: AIX 5.3 > Compiler: IBM &qu

Re: [EMAIL PROTECTED] How to connect from a remote machine

2008-11-24 Thread Brian Mearns
FYI, I've taken this thread off the list with Albert, since it's no longer related to Apache. If it comes back to server configuration, It will rejoin the mailing list. -Brian On Mon, Nov 24, 2008 at 12:37 PM, Evan Platt <[EMAIL PROTECTED]> wrote: > That doesn't mean

Re: [EMAIL PROTECTED] recovering a .conf file

2008-11-26 Thread Brian Munroe
then run strings on the corefile to aid in reconstruction. Hopefully, you are running on a UNIX type OS... -- brian - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/us

Re: [EMAIL PROTECTED] recovering a .conf file

2008-11-26 Thread Brian Munroe
g said, since I do have mod_perl configured, I will leave this > script installed, just in case I ever encounter the same problem as the OP > here. Awesome good to know! -- brian - The official User-To-User support forum o

Re: [EMAIL PROTECTED] File upload to Apache server without third party software

2008-12-02 Thread Brian Mearns
hing you're looking for, but it might be worth a look. Hope that helps, -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: https://keyserver.pgp.com On Mon, Dec 1, 2008 at 1:09 PM, <[EMAIL PROTECTED]> wrote: > Hi All, > > First of all, sor

Re: syntax error

2008-12-15 Thread Brian Mearns
Just off the top of my head, try changing the Listen directive from Listen 80 to Listen 127.0.0.1:80 -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://pgp.mit.edu/ On Mon, Dec 15, 2008 at 10:33 AM, James Taylor-Bye wrote: > This is

Re: apache

2008-12-15 Thread Brian Mearns
act that you're writing to the Apache mailing list implies that the subject of the message is going to be Apache. You're more likely to get a useful response if you provide a little more classification of what your problem is. Good luck resolving your issue. -Brian -- Feel free to contact me

Re: Hide Directory

2008-12-17 Thread Brian Mearns
ly possible. But if that's really what you're after, it's probably a whole lot more work than it's worth. So once again, I have to ask...what exactly are you trying to accomplish? -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http

Re: Hide Directory

2008-12-18 Thread Brian Mearns
I guess if you want to do things the easy way. =J -Brian -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://pgp.mit.edu/ On Thu, Dec 18, 2008 at 1:16 AM, Morgan Gangwere <0.fracta...@gmail.com> wrote: > http://sonof.bandit.name/ > Me

Segfaults with SSLSessionCache

2008-12-18 Thread Brian Mearns
set it to none or nonenotnull, and it works fine on unsecured http regardless of this directive. The directive is global, not in a vhost or any file/dir/location etc. Any thoughts on what's causing this or how to track down the cause of the segfault? Thanks -Brian -- Feel free to conta

Re: [us...@httpd] Use Apache as proxy to redirect requests

2008-12-24 Thread Brian Mearns
You'll probably want to use mod_proxy. There's a whole section on it in the manual: http://httpd.apache.org/docs/2.2/mod/mod_proxy.html -- Feel free to contact me using PGP Encryption: Key Id: 0x3AA70848 Available from: http://pgp.mit.edu/ On Tue, Dec 23, 2008 at 6:19 PM, giovanni.forme...@lib

Re: [us...@httpd] Issue in apache service

2008-12-24 Thread Brian Mearns
And what exactly do you mean by not being able to see the site? Does you browser say it can't connect? That it can't find the site? Does it connect and nothing shows up? There could be a million things causing problems, please be more specific about the symptoms so we can try to help yo

  1   2   3   4   5   >