Hi all,
*setup and idea*
Currently I'm setting up a WebDAV-server for network-drive-like use in both
Windows XP and Windows 7 clients. The test setup is running nice when using
mod_dav_fs. Yesterday I read something about using mod_dav_svn and auto
versioning to keep a history of files. As I was l
advance
Martijn
-
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
" from th
Van: "Eric Covener"
Aan: users@httpd.apache.org
Verzonden: Dinsdag 11 augustus 2009 14:25:27 GMT +01:00 Amsterdam / Berlijn /
Bern / Rome / Stockholm / Wenen
Onderwerp: Re: [us...@httpd] Strange problem - Apache httpd 2.2.11 on Solaris
10 sparc
On Tue, Aug 11, 2009 at 8:00 AM, Mar
Van: "Eric Covener"
Aan: users@httpd.apache.org
Verzonden: Dinsdag 11 augustus 2009 13:17:23 GMT +01:00 Amsterdam / Berlijn /
Bern / Rome / Stockholm / Wenen
Onderwerp: Re: [us...@httpd] Strange problem - Apache httpd 2.2.11 on Solaris
10 sparc
Can you find the processes using high cpu and pos
ve no other threads, so it looks like a problem sending the reply to
the client
Any ideas on how to solve this?
Regards and TIA
Martijn
-
The official User-To-User support forum of the Apache HTTP Server Project.
Se
I really don't know why the error_logs of the virtualhosts stay
empty. I don't have any clues where to look for :(
Any ideas?
regards,
Martijn
From: Eric Covener
Date: April 19, 2009 3:51:59 PM GMT+02:00
To: users@httpd.apache.org
Subject: Re: [us...@httpd] Empty error_log
O
I really don't know why the error_logs of the virtualhosts stay empty.
I don't have any clues where to look for :(
Any ideas?
regards,
Martijn
-
The official User-To-User support forum of the Apache HTTP Se
ookies are stored
in a session variable. On any request, the back-end server checks for
the existence of such a session variable; if it exists it sends the
remembered cookies to the user and empties the variable.
Martijn.
-
The offi
particular, any Set-Cookie: headers are ignored in the
request, which breaks parts of the web application. I have spent the
last few hours trying to find a solution, but have failed so far. Any
help would be greatly appreciated.
Thanks.
Martijn
"/opt/csw/
apache2/share/htdocs/suexec/xxx.nl/php5-cgi" (uid 10003, gid
10001) started (pid 8253)
All the config files and scripts are the same so the problem should be
file permissions I guess, any ideas?
thanks,
Martijn de Munnik
---
gex negation
would be a simple idea.
I could not find anywhere -neither in documentation, nor on the
internet- whether regex negation is possible in Apache 1.3. Thanks to
your reply, the answer should now be available through the archives
d be a lot easier. If it were
possible in Apache 1.3 that is.
Martijn.
-
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,
ither, while removing it altogether
matched only .gif and .jpg files, thus confirming that there is no
typo in that bit.
Any ideas?
Thanks.
Martijn.
-
The official User-To-User support forum of the Apache HTTP Server Project.
See
to hid the
actual URL from the address bar.
Both cases, however, go beyond the scope of this mailing list.
Martijn.
PS your message was sent three times within a short period of time.
-
The official User-To-User support
8381)
FastCGI: can't start server "/opt/csw/apache2/share/htdocs/suexec/
testserver/php5-cgi" (pid 28381), execle() failed: Permission denied
[Wed Jan 09 11:27:21 2008] [warn] FastCGI: (dynamic) server "/opt/csw/
apache2/share/htdocs/suexec/testserver/php5-cgi" (pid 28381)
html is indeed your DocumentRoot and
there isn't anything fancy happening to the location of .js files.
Martijn.
-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/usersli
wing:
>
> RewriteCond %{QUERY_STRING} ^([^,$]*)$ [NC]
That's bound not to work. A $ in a regular expression means the end of
the string.
Martijn.
-
The official User-To-User support forum of the Apache HTTP Server Proj
it removes a trailing comma if it occurs: this way
you won't get an error, even if a comma slips though the maze. (People
might changes their links to a new URL but accidentally leave the
comma there.)
Martijn.
-
The offic
il.html?s=%1
If not, try to replace (\ ) by (\s).
(\ )? means: a space or nothing, so it should match both your cases.
Note that, in the URL you see in the browser, spaces are converted to
%20, but in the URL that is parsed by mod_rewrite, they are converted
back.
Martijn.
--
e first line checks if the host is
store.knifecenter.com, the second line puts the full query_string (the
bit after the ? in the URL) into %1 and the second line does the
actual rewriting.
Martijn.
-
The official User-To-User suppor
aving
tested it, this should work:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !www.domain.com$ [NC]
RewriteCond %{HTTP_HOST} ^(www.)?([a-z0-9-]+).domain.com$ [NC]
RewriteRule (.*) ~%2/$1 [L]
Martijn.
-
The
ave to configure it to work correctly ?
RewriteCond %{HTTP_USER_AGENT} .*nokia.* [NC,OR]
[..]
RewriteCond %{HTTP_USER_AGENT} .*safari.* [NC,OR]
RewriteRule ^/$ http://www.domain.de/XY2/ [L]
RewriteRule ^/$ http://www.domain.de/XY1/ [R,L]
What if you remove the ,OR from the last RewriteCond?
M
ewrite. If the problem is in mod_rewrite (i.e. if you don't
see test.html), it's best to turn the RewriteLog on. This might give
you an idea about what's going wrong.
Martijn.
-
The official User-To-User support for
ity=$1
This changes the URl to
http://dev.expedia.jp/action.do?city=hawaii
Please suggest as to how this URL can be preserve while internally hiting an
action.
Leave the http and hostname out of the RewriteRule:
RewriteRule ^/([a-zA-Z]*)(-)(hotels)/ /action?city=$1
M
URL.
RewriteEngine on
RewriteRule /(.*)-hotels$ /action?city=$1
Should work (though I didn't test it).
See also, depending on your Apache version:
http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html
or
http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html
Ma
have not found this in the Apache
documentation, so I can't *guarantee* it to work. I can just say that
it works like this for me. And I hope I've described it clearly enough
for it to work for others too. :)
Martijn.
-
ll continue after an R
flag. This means that subsequent RewriteRules may, for example, change
the target URL before the actual rewrite happens. (But I haven't tried
this myself in a while, so I may be remembering incorrectly.)
In any case,
he last rule that is applied.
Thanks.
Martijn.
PS In case that makes a difference, I am using Apache 2.0.52.
-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.htm
ck and on the
fly' kind of solution I was looking for, I will definitely be able to
use the suggestion while setting up the new server.
Martijn.
-
The official User-To-User support forum of the Apache HTTP Server Proje
sever -whether on the same machine or not- it
would over-complicate things. And, in particular, wouldn't be the
quick solution I'm looking for.
* it is basically this that makes me believe that users who
'DownThemAll' are genuine users, rather than people trying to
d perhaps I should add that I
don't really care about bandwidth.
Any ideas?
Martijn.
-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more inf
e new system, neither
does Google or the Apache manual help me out. My gut feeling is that I
can just safely remove this line, but as I'd rather know what I'm
doing: does anyone know what this module is (was) supposed to do?
T
And if not, thanks
for your time anyway. :)
Martijn.
PS a little bit form httpd.conf:
Timeout 300
KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimeout 5
MinSpareServers 25
MaxSpareServers 30
StartServers 30
MaxClients 85
MaxRequestsPerChild 1
(I just realised that I had changed MaxClients f
at apache really 'crashed', so it probably, didn't but the
effect was the same. People who were awake at that time told me that
they couldn't reach the site, but the server did ping.
I hope this helps.
Cheers.
Martijn
-
he
client or with the server). And, of course, how to make sure this
won't happen again.
Martijn
-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> fo
Hello Joshua, thanks for your post.
That would be a valid solution if the real names where A and B, but
unfortunately they're longer than a single character ("crewforum" and
"stats" to be exact) and this wouldn't work on the virtual locations as well.
At 20:36 24-8-2005 -0400, you wrote:
Wel
rtual ) is using the exact same list of restrictions.
I've tried solving this by doing something like
include restrict.conf
where restrict.conf contains
---
order allow,deny
allow from foo
allow from bar
---
But Apache didn't like that.
Any other ideas to solve this are welcome as
What am I missing here?
Thanks in advance,
Martijn.
-
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 PROTECT
38 matches
Mail list logo