[EMAIL PROTECTED] Understanding 404 Not Found and Google Sitemaps Tools

2006-12-30 Thread Roger
Hi, My starting confusion is using the google sitemaps tool at https://www.google.com/webmasters/tools/verify?hl=en. A complicating factor is that my ISP blocks port 80 and I am using URL forwarding to port 90 on my server. I created a * googlea47802e0bbdc3e50.html*. file per the instructio

[EMAIL PROTECTED] Re: apache rewritecond spits out "http://blah.com//whatever". double slashes?

2006-12-30 Thread jamie rishaw
didnt seem to work.. quoted backslash and otherwise. ill keep on it, thanks tho heh. On 12/30/06, Aplus Dedicated Support, Jarrod Overson <[EMAIL PROTECTED]> wrote: Disclaimer (and a big one at that), i have never used mod_rewrite before but if the problem is that you continuously grab a forwar

Re: [EMAIL PROTECTED] where to start automatic

2006-12-30 Thread Davide Bianchi
Arturo Zentella Dehesa wrote: ¿Could someone tell me How/Where should I tell the sistem (or apache) to start when the sistem starts? I It depends by the kind of distribution you have, in a SystemV oriented one you have to add a symlink in /etc/rcX.d (where X is the runlevel) to start the proc

Re: [EMAIL PROTECTED] apache rewritecond spits out "http://blah.com//whatever". double slashes?

2006-12-30 Thread Aplus Dedicated Support, Jarrod Overson
Disclaimer (and a big one at that), i have never used mod_rewrite before but if the problem is that you continuously grab a forward slash prefix then you can just place that outside the regex group that is to be backreferenced, for example RewriteRule ^/(.*)$ http://domain.com$1 [R=301,L]

[EMAIL PROTECTED] apache rewritecond spits out "http://blah.com//whatever". double slashes?

2006-12-30 Thread jamie rishaw
Guys, RewriteCond.. just added to a host to strip www off of requests coming to www.@ Now tho all urls are being rewritten to " http://host.tld//whatever";. Note the double slashes after tld. While this doesnt break things /per se/, it is annoying and looks like a misconfigured site. Which

[EMAIL PROTECTED] where to start automatic

2006-12-30 Thread Arturo Zentella Dehesa
Hi there, Sorry, perhaps its more a linux question. For learning "from the very basement" I (as root) dowld + make + inst Apache/2.2.3 in a linux 2.6.17-5mdv system. For now its again doing well but: ¿Could someone tell me How/Where should I tell the sistem (or apache) to start when the sistem sta

Re: [EMAIL PROTECTED] Apache and client certs

2006-12-30 Thread Serge Dubrouski
On 12/30/06, toadie D <[EMAIL PROTECTED]> wrote: It is possible to use reverse proxy to pass a PEM Encoded Certificate as a HTTP header to a backend server. Make sure you have this directive in your config file SSLOptions +ExportCertData Then use mod_headers to set the header RequestHeader M

Re: [EMAIL PROTECTED] How to extend the Protocol when using SSL?

2006-12-30 Thread Eric Covener
On 12/21/06, Michael Stapelberg <[EMAIL PROTECTED]> wrote: Hello everyone, I'd like to pass some information using my own HTTP-client to apache. I used to just append them to the HTTP-headers using X-Foo: bar and getting them in PHP via $_SERVER['X_FOO']. Now I decided that SSL is necessary for

Re: [EMAIL PROTECTED] passwords on version 2.2.3 for windows XP

2006-12-30 Thread Eric Covener
On 12/27/06, AB <[EMAIL PROTECTED]> wrote: I am having trouble using text file authorization. Only certain user/password combinations work, I can't find documentation on user/pass restrictions. Examples and something to illustrate how you're creating your userids and configuring your server wo

Re: [EMAIL PROTECTED] Redirect URLs using mod_rewrite

2006-12-30 Thread Eric Covener
On 12/28/06, Stefan Antonelli <[EMAIL PROTECTED]> wrote: I've tried out this and a lot of variants but none of them worked for me: RewriteRule ^/subdir/foo.php\?id=(.*) /subdir/bar.php?newid=$1#sameid$1 [R] You can't match the query string in RewriteRule. Add a RewriteCond that looks at %{QU