Chris Arnold wrote:
>> Have you tried adding:
>
>> ServerAlias www.teknerds.net
>
>> to the second VH? (Essentially, you need to tell Apache which VH to
>> direct the request to - www.teknerds.net is not the same as teknerds.net)
>
> Yes, i make that change and it still takes me to the first vh
Hello,
Could you please advise if this can be done in apache?
http://server1/OpenObject?doc=ERW
to be redirected to:
http://server2:9000/OpenObject?doc=ERW
I mean everything that starts with /OpenObject to be
redirected to server2:9000 with the same trailing
string /OpenObject?doc=ERW or /OpenO
Hi!
> Could you please advise if this can be done in apache?
> http://server1/OpenObject?doc=ERW
> to be redirected to:
> http://server2:9000/OpenObject?doc=ERW
> I mean everything that starts with /OpenObject to be
> redirected to server2:9000 with the same trailing
> string /OpenObject?doc=ERW o
ups...
> RewriteEngine On
> RewriteRule ^/(OpenObject.*) http://server2:9000/$1 [P,L]
> ProxyPassReverse / http://server1/
of course the ProxyPassReverse directive should look like
ProxyPassReverse / http://server2:9000/
---
severin
hello,
I need to add these 2 lines to my conf file:
RewriteEngine On
RewriteRule ^/(OpenObject.*) http://server2:9000/$1
the http service is critical and cannot kill sessions.
Is there a way to reload the configuration without
restarting apache?
thanks.
Hi
I have been trying to install Apache on Solaris 10. I hit problems when I r=
un the "make" command. I have downloaded, and isntalled GNU Make, and also =
have GCC installed. Here is the output when I run this make command:
iris:/software/httpd-2.2.6# make
Making all in srclib
Making all in
Hi,
Melanie Pfefer wrote:
> hello,
>
> I need to add these 2 lines to my conf file:
>
> RewriteEngine On
> RewriteRule ^/(OpenObject.*) http://server2:9000/$1
>
>
> the http service is critical and cannot kill sessions.
> Is there a way to reload the configuration without
> restarting apache?
> I need to add these 2 lines to my conf file:
>
> RewriteEngine On
> RewriteRule ^/(OpenObject.*) http://server2:9000/$1
Melanie, you should alter the latter line (above) to
RewriteRule ^/(OpenObject.*) http://server2:9000/$1 [R=301,L]
This way, browsers are able to cache the request (R=301) a
On Thu, Dec 20, 2007 at 11:40:02AM +, Melanie Pfefer wrote:
> the http service is critical and cannot kill sessions.
> Is there a way to reload the configuration without
> restarting apache?
apachectl -h
Usage: /data/custom-apaches/apache-2.0.61/bin/httpd \
[-D name] [-d directory] [-f file
Thanks for responding Dragon. I added the JavaScript mime type to the HTTPD
file. I restarted the server and tried to load the external JavaScript
file into the .CGI process from the supra-directory (root) and a
subdirectory to the cgi-bin directory. The load from the root did not
work. Th
thanks.
___
Yahoo! Answers - Got a question? Someone out there knows the answer. Try it
now.
http://uk.answers.yahoo.com/
-
The official User-To-User support forum o
If that server of yours really is critical, I would urge you NOT to change the
operational configuration before having tested the changes elsewhere.
-ascs
-Message d'origine-
De : Melanie Pfefer [mailto:[EMAIL PROTECTED]
Envoyé : jeudi 20 décembre 2007 12:40
À : users@httpd.apache.org
On Dec 19, 2007 11:13 PM, <[EMAIL PROTECTED]> wrote:
> Hi, how do i use the htdbm to create dbm group files?
> ...seems like this can only done only by the deprecated dbmmanage.. ?
> btw, what makes the difference using a single or two dbs for users and
> groups? what are your personal preferences
You can download the compiled GCC and glib packages you need from this site
http://www.sunfreeware.com/
Looks like they even have Apache 2.2.6 available too.
To compile, try using these packages on your system.
Also be sure you are using apr and apr-util version 1.2.*
If you do not want to compil
CraigT wrote:
Thanks for responding Dragon. I added the JavaScript mime type to the HTTPD
file. I restarted the server and tried to load the external JavaScript
file into the .CGI process from the supra-directory (root) and a
subdirectory to the cgi-bin directory. The load from the root di
Hi.
I've got some problem with mod_rewrites redirect behaviour.
I'll got some urls which may have some query parameters which are utf8 encoded
like this:
/abcd/u1?myparam1=h%C3%A4llo
It works fine.
Now there should be some short urls which match to the long url above:
RewriteRule ^/ef(.*)$ /a
Hm - never mind, NE - noescape does the trick, should have read more
carefully, rtfm ;-)
Torsten
Am Donnerstag, 20. Dezember 2007 17:20:25 schrieb Torsten Krah:
> Hi.
>
> I've got some problem with mod_rewrites redirect behaviour.
> I'll got some urls which may have some query parameters which a
Thank you very much for your help. The installation went fine, but when I try
to start the server I get this error.
-bash-3.00# apachectl start
ld.so.1: httpd: fatal: libexpat.so.0: open failed: No such file or directory
Killed
I added all packages that were recommended on http://www.sunfreewar
Thanks again Dragon. When I tried to load the js file directly via the
browser, it showed the problem.
I had to adapt my quoting in the .JS file to work with the new loading
approach.
craigt
Dragon-4 wrote:
>
> CraigT wrote:
>
>>Thanks for responding Dragon. I added the JavaScript mime
Hello everybody. I'm sure some of you are at least somewhat familiar
with the bug here: http://issues.apache.org/bugzilla/show_bug.cgi?id=39095
If you're not, the basic theory is that if there's not an auth call to
the ldap server for 10 minutes, the server will return the wrong
message. Here'
Two things:
1) httpd is not compile statically, so it looks for libraries at run-time
To compile statically, try this ./configure option
--enable-static-support
2) the library is not found at run time.
(assuming libexpat is in /lib) To fix this, try:
env LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/
On Dec 20, 2007 2:21 PM, Russell E Glaue <[EMAIL PROTECTED]> wrote:
> Two things:
>
> 1) httpd is not compile statically, so it looks for libraries at run-time
> To compile statically, try this ./configure option
> --enable-static-support
I believe this only affects support programs such
I got mod_dav to serve files from NFS without problems by doing something I
shouldn't:
-
apr-util-1.2.12/dbm/sdbm/sdbm_private.h
46,47c46,47
< #define SDBM_SHARED_LOCK 0x4/* data base locked for shared read */
< #define SDBM_EXCLUSIVE_LOCK 0x8/* data base locked for write */
---
>
This is an odd problem and I'm not sure how to describe it exactly.
About 2 months ago (at least that's when we first noticed) we started
having weird problems with our website. The types of problems we would
see are the following:
1. Web pages would display in text only
2. CSS files
24 matches
Mail list logo