Re: [EMAIL PROTECTED] Gallery version 2.0.2

2006-05-29 Thread Richard de Vries
You'll probably have better luck at finding an answer at gallery.menalto.com But what you might want to try, is setting the "locking mechanism" in your Gallery Configuration (Administration pages) to DB instead of files. R --- Cindy O'Leary <[EMAIL PROTECTED]> wrote: > I am a complete n

Re: Re: [EMAIL PROTECTED] Apache reverse proxy and IBM websphere

2006-05-29 Thread Richard de Vries
What do the Proxy and WebSphere logfiles reveal? Have you tried a manual HTTP connection from your proxy server to your webserver server. i.e. telnet GET / HTTP/1.0 R --- Gabriele Barberi <[EMAIL PROTECTED]> wrote: > I already include the port but it doesn't work. > The reverse proxy runs

[EMAIL PROTECTED] apache Rewrite Rules

2006-05-29 Thread Om
Hi friends, I am a novice at mod_rewrite. Can anybody suggest me any good site for the description of Rewrite Rules. Is there any site which describes mod_rewrite module in detail. Thanks, Om. - The official User-To-User support

RE: [EMAIL PROTECTED] mod_rewrite

2006-05-29 Thread Axel-Stéphane SMORGRAV
> Without the L-flag, and after /a has been substituted with /b, the second > rule would be tested not against /b but against http://[host]/b, so the > result is not /c. This is where my misconception about immediate redirection with the R flag comes from. Should look at the code some more. >

Re: Re: [EMAIL PROTECTED] Apache reverse proxy and IBM websphere

2006-05-29 Thread Gabriele Barberi
I already include the port but it doesn't work. The reverse proxy runs on an external server Regards Gabriele Doesn't WebSphere run on a specific port like 9080. (and not 80). Make sure to include that port in your forward statement. Thus: ProxyPass /websphere http://websphere-address:websp

Re: [EMAIL PROTECTED] Getting Apache to use PHP under Window XP

2006-05-29 Thread WDaquell
Have you tried putting PHP.ini in your Windows folder? I had to do that before PHP would work on my system. -Wraith Martyn Griffin wrote: Overview: I am trying to change the httpd.conf file to add the LoadModule command for PHP V5.1.4. The instructions indicate to make a reference to the .d

[EMAIL PROTECTED] Getting Apache to use PHP under Window XP

2006-05-29 Thread Martyn Griffin
Overview: I am trying to change the httpd.conf file to add the LoadModule command for PHP V5.1.4. The instructions indicate to make a reference to the .dll file (not an .SO file). Here is the line that was added: LoadModule php5_module modules/php5apache2.dll The dll file has been moved to the

Re: [EMAIL PROTECTED] Configuring Apache behind a wireless router

2006-05-29 Thread Emmanuel E
apache says that cos 201.x.x.15 is not available on your local windows machine. its only available on the wireless router. tell apache to just listen on port 80 (no need to specify an ip): Listen 80 and then configure your router to forward connections on port 80 to the machine which is runni

[EMAIL PROTECTED] Gallery version 2.0.2

2006-05-29 Thread Cindy O'Leary
I am a complete novice at this, but my professional has been unable to help me with a problem I've had with my gallery page.  I used to be able to download pictures to albums and now I can't. I get an error message that reads: Can anyone help me with this?

[EMAIL PROTECTED] htaccess ANY HELP PLEASE ?

2006-05-29 Thread Mididoc Productions
sorry to bug you again, we have in the htaccess file a treatment for errors: ErrorDocument 403 http://www.ourdomain.com ErrorDocument 404 http://www.ourdomain.com ErrorDocument 500 http://www.ourdomain.com this is for redirecting any user to the mainpage, when he is searching a file which does n

Re: [EMAIL PROTECTED] need help fighting DoS attack on Apache

2006-05-29 Thread Sean Conner
It was thus said that the Great Sergey Tsalkov once stated: > > Hey guys.. My Apache was hit with a DoS attack, where the attacker was > opening connections to the server and not sending any data. It quickly > reached the MaxClients limit and prevented any further connections to > the server. > >

[EMAIL PROTECTED] pdf problems?

2006-05-29 Thread Bill Angus
Hi All:   After upgrading to WIN32 APACHE 2.0.58 (binaries courtesy of Hunter's site - !! THANKS HUNTER !! ). we had a customer note that .PDF files on our site cannot be displayed in their IE browser. We discovered that if we turn off MOD_DEFLATE, PDF's can be opened again. The eviro is

SV: [EMAIL PROTECTED] Running vhosts with php and virtual users

2006-05-29 Thread Mattias Segerdahl
Running php as cgi would still involve unique uid's, and I've got about 30k+ virtual users. -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] För Joshua Slive Skickat: den 29 maj 2006 22:47 Till: users@httpd.apache.org Ämne: Re: [EMAIL PROTECTED] Running vhosts w

Re: [EMAIL PROTECTED] Running vhosts with php and virtual users

2006-05-29 Thread Joshua Slive
On 5/29/06, Mattias Segerdahl <[EMAIL PROTECTED]> wrote: I'm experiencing difficulties using apache in the following environment. Is there any good solution that would solve the security problems? Server version: Apache/2.2.2 Server built: May 14 2006 18:14:53 PHP 5.1.4 (cli) (built: May 5 20

Re: [EMAIL PROTECTED] mod_rewrite

2006-05-29 Thread Robert Ionescu
Axel-Stéphane SMORGRAV wrote: Rules below would be tested, but they wouldn't match unless the pattern starts with scheme + :// + url-path. unless the RewriteCond pattern starts with /. The above matches just fine. I meant this hypothetical case RewriteRule ^/a /b [R] RewriteRule ^/b /c Wit

[EMAIL PROTECTED] htaccess

2006-05-29 Thread Mididoc Productions
hi, we have in the htaccess file a treatment for errors: ErrorDocument 403 http://www.ourdomain.com ErrorDocument 404 http://www.ourdomain.com ErrorDocument 500 http://www.ourdomain.com this is for redirecting any user to the mainpage, when he is searching a file which does not exist. this works

RE: [EMAIL PROTECTED] rewrite rule

2006-05-29 Thread Axel-Stéphane SMORGRAV
Could you give some explanations wrt. your RewriteCond ? I have never seen this kind of expressions before. -ascs -Original Message- From: Robert Ionescu [mailto:[EMAIL PROTECTED] Sent: Monday, May 29, 2006 7:55 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] rewrite rule

RE: [EMAIL PROTECTED] mod_rewrite

2006-05-29 Thread Axel-Stéphane SMORGRAV
Just did some testing. The following should work RewriteEngine On RewriteCond%{HTTP_REFERRER} !$2$3 RewriteRule ^/(.*)/([^/]*\.)(html|htm|php)$ /test-redir.php?page=/test/$2$3 [R,L] If referer does not contain $2/$3, the RewriteCond will ma

Re: [EMAIL PROTECTED] rewrite rule

2006-05-29 Thread Robert Ionescu
Mariusz Handke wrote: This wouldn't work (RewriteCond) since $2 and $3 are not known at this stage of rewriting process yet, but I'm still working on it - That won't work. You can't use back references from mod_rewrite in a RegEx. - They're known, as Axel-Stéphane already said. - You must u

Re: [EMAIL PROTECTED] mod_rewrite

2006-05-29 Thread Robert Ionescu
Axel-Stéphane SMORGRAV wrote: The L is not necessary since the redirect is immediate. Rules below would be tested, but they wouldn't match unless the pattern starts with scheme + :// + url-path. Only other status codes than 301, 302, 303 will be forced immediately (eg. R=404, since apache 2

RE: [EMAIL PROTECTED] Configuring Apache behind a wireless router

2006-05-29 Thread Josh Sephton
Thank you, that has worked! -Original Message- From: Richard de Vries [mailto:[EMAIL PROTECTED] Sent: 29 May 2006 16:08 To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Configuring Apache behind a wireless router You will need to configure Apache to listen to the IP address on t

Re: [EMAIL PROTECTED] Configuring Apache behind a wireless router

2006-05-29 Thread Richard de Vries
You will need to configure Apache to listen to the IP address on that specific machine behind your router; which is most likely a private address. i.e. 192.168.x.x or 10.10.x.x Then, in your router, go to "port forwarding" and tell it to forward all incoming request for port 80, to the private IP

[EMAIL PROTECTED] Configuring Apache behind a wireless router

2006-05-29 Thread Josh Sephton
Hi, I'm trying to configure Apache to respond for requests to the external address of my LAN. Currently I have a Belkin wireless router into which my internet comes in through. I then have several Windows computers which connect to that router. One of these boxes has Apache2 installed on it. I w

Re: [EMAIL PROTECTED] Apache reverse proxy and IBM websphere

2006-05-29 Thread Richard de Vries
Doesn't WebSphere run on a specific port like 9080. (and not 80). Make sure to include that port in your forward statement. Thus: ProxyPass /websphere http://websphere-address:websphere-port/WS Does the reverse proxy run on the WebSphere server, or a server external to the websphere server? R

[EMAIL PROTECTED] Apache 2.2 Fedora Core 4 RPMs

2006-05-29 Thread Marc Perkel
Is there any Apache 2.2 RPMs for Fedora Core 4? - 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 PROTECTED]

[EMAIL PROTECTED] Apache reverse proxy and IBM websphere

2006-05-29 Thread Barberi Gabriele
Hi all, I need to implement a reverse proxy for export a local network server with WebSphere on the public web server. I'm currently running apache Hi all, I'm currently running apache 1.3.27 on a SuSE 8.2 and I need to use Websphere 5.1 from web. Websphere server is running on local network. I

Re: [EMAIL PROTECTED] ProxyPass and reverse

2006-05-29 Thread Giovanni
On 10:13, lunedì 29 maggio 2006, Axel-Stéphane SMORGRAV wrote: > It is really hard to understand exactly what your problem is because your > description is so sketchy. My understanding is that when you request > http://pippo/ntop/showPlugins.html?icmpWatch, the backend server issues a > redirect to

RE: [EMAIL PROTECTED] rewrite rule

2006-05-29 Thread Axel-Stéphane SMORGRAV
Your statement is wrong. The saves $2 and $3 are definitely known at that stage of the rewriting process. The RewriteRule pattern is the first to be evaluated. Check the mod_rewrite manual page. You can also test it for yourself with RewriteLogLevel 3 -ascs -Original Message- From: Ma

Re: [EMAIL PROTECTED] rewrite rule

2006-05-29 Thread Mariusz Handke
This wouldn't work (RewriteCond) since $2 and $3 are not known at this stage of rewriting process yet, but I'm still working on it Krist van Besien wrote: On 5/26/06, Mariusz Handke <[EMAIL PROTECTED]> wrote: Thanks for suggestion, that's what I will do, but I still think there should be other

Re: [EMAIL PROTECTED] Apache Symbols (charset?)

2006-05-29 Thread Rob | Pro-Servers.Co.Uk
Ah, I have solved this problem via commenting out the 'AddDefaultCharset UTF-8' directive. :D   Rob - Original Message - From: Rob | Pro-Servers.Co.Uk To: users@httpd.apache.org Sent: Monday, May 29, 2006 10:57 AM Subject: [EMAIL PROTECTED] Apache Symbols (charset

[EMAIL PROTECTED] Apache Symbols (charset?)

2006-05-29 Thread Rob | Pro-Servers.Co.Uk
Hello all, thanks for taking the time to read this.   I have just setup a Fedora Core 5 box and installed all the usual things, apache, MySQL, PHP etc. When I upload a page with the pound symbol in and try to view it, it appears as a kind of question mark in a little box.   I have been looki

RE: [EMAIL PROTECTED] mod_rewrite

2006-05-29 Thread Axel-Stéphane SMORGRAV
Seems almost right to me. If you want the querystring appended, you need to use the QSA option. The L is not necessary since the redirect is immediate. RewriteRule ^/directoryone/directorytwo/(mypage\.php)$ /$1 [R=301,QSA] -ascs -Original Message- From: Robert Ionescu [mailto:[EMAIL P

RE: [EMAIL PROTECTED] ProxyPass and reverse

2006-05-29 Thread Axel-Stéphane SMORGRAV
It is really hard to understand exactly what your problem is because your description is so sketchy. My understanding is that when you request http://pippo/ntop/showPlugins.html?icmpWatch, the backend server issues a redirect to http://localhost:3000/plugins/icmpWatch which you expect the rev

Re: [EMAIL PROTECTED] rewrite rule

2006-05-29 Thread Krist van Besien
On 5/26/06, Mariusz Handke <[EMAIL PROTECTED]> wrote: Thanks for suggestion, that's what I will do, but I still think there should be other way to do it, within apache scope. Krist van Besien wrote: > > You need to do this differently. The way I would do this is change my > php script so it incl