Re: [us...@httpd] Strange compile error for Apache 2.2.11

2009-04-12 Thread Nishaliny Thurairatnam
Ok, so I spoke waaay too soon! After a successful configure, I had an epic "make" failure!! Making all in srclib make[1]: Entering directory `/home/foodreg/Installers/httpd-2.2.11/srclib' Making all in pcre make[2]: Entering directory `/home/foodreg/Installers/httpd-2.2.11/srclib/pcre' make[3]:

Re: [us...@httpd] Strange compile error for Apache 2.2.11

2009-04-12 Thread Nishaliny Thurairatnam
Hi Prasanna, Thank you for your reply...I'm definitely no Apache expert, but I think I decided to arrange my configure options this way before, because I'd read(in the Apache documentation...I think) that --enable-modules=all doesn't actually enable all modules, and that's why we have to speci

[us...@httpd] Wildcard patterns not allowed in Include /home/www/*/*.conf

2009-04-12 Thread Herson
I need include all .conf files in all directories in /home/www/, and i have Syntex error with this: httpd: Syntax error on line 506 of /etc/httpd/httpd.conf: Wildcard patterns not allowed in Include /home/www/*/*.conf Why this dont work? Have another way to make this? Tanks -- Herson Leite

Re: [us...@httpd] Location, LocationMatch combinations

2009-04-12 Thread André Warnier
Eric Covener wrote: On Sun, Apr 12, 2009 at 11:27 AM, André Warnier wrote: Hi. Apache 2.2.x, configuration. I have read this : http://httpd.apache.org/docs/2.2/sections.html but some aspect is still not very clear to me. If I have : .. some directives A .. .. some directives B .. .

Re: [us...@httpd] Location, LocationMatch combinations

2009-04-12 Thread Eric Covener
On Sun, Apr 12, 2009 at 11:27 AM, André Warnier wrote: > Hi. > > Apache 2.2.x, configuration. > I have read this : http://httpd.apache.org/docs/2.2/sections.html > but some aspect is still not very clear to me. > > If I have : > > >  .. some directives A .. > > > >  .. some directives B .. > >

[us...@httpd] Location, LocationMatch combinations

2009-04-12 Thread André Warnier
Hi. Apache 2.2.x, configuration. I have read this : http://httpd.apache.org/docs/2.2/sections.html but some aspect is still not very clear to me. If I have : .. some directives A .. .. some directives B .. .. some directives C .. (The above URIs do not reside on the filesystem.)

[us...@httpd] Authorization module for local user/groups

2009-04-12 Thread Markus Moeller
I am not sure if this already exists, but the attached module checks if the user is a local user or a member of a local group. Local means the user or group getpwnam and getgrnam return (this should honour nsswitch.conf and therfore NIS/ldap users too). Regards Markus mod_authz_group_user.

Re: [us...@httpd] cgi script unable to create files on server.

2009-04-12 Thread André Warnier
Jamal, listen. - all your scripts can create a file when you run them from the command-line. Yes ? - all your scripts get an error when they try to create a file when they are being run by Apache. Yes ? - then it means that there is a difference, between when you run them from the command-lin

Re: [us...@httpd] Can't access apache serverrom a remote computer

2009-04-12 Thread André Warnier
Nathan Huang wrote: [...] Yeah, you are right, something is blocking 80 port. I think maybe there are some problem with iptables, I write in terminal ' echo '-A RH-Firwall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT >> /etc/sysconfig/iptables' but when I restart iptables: /

Re: [us...@httpd] cgi script unable to create files on server.

2009-04-12 Thread m jamal
its not just this script any script trying to create a file gives the error.it works nicely up to point when no file has to be created.when it reaches the point it has to create file it gives the error which i have specified in cerr.there is no problem of permissions. --- On Sun, 4/12/09, André

Re: [us...@httpd] Can't access apache serverrom a remote computer

2009-04-12 Thread André Warnier
Nathan Huang wrote: Hi Who can help me to figure out what problem I have with my apache server, I am using fedora 10, and installed LAMP in my computer yestoday, I can access my apache server from my own computer , I typed 'http://localhost/index.php', and when I typed http://192.168.2.100/inde

Re: [us...@httpd] cgi script unable to create files on server.

2009-04-12 Thread André Warnier
Hi jamal. Please keep responding to the list, not to me personally. I cannot tell you for Vista. For XP it would be like this : Assuming that you are running Apache as a Service : Right-click on the "My Computer" icon, choose "Manage". In the Window that appears, find "Services" and click on it.

[us...@httpd] Can't access apache serverrom a remote computer

2009-04-12 Thread Nathan Huang
Hi Who can help me to figure out what problem I have with my apache server, I am using fedora 10, and installed LAMP in my computer yestoday, I can access my apache server from my own computer , I typed 'http://localhost/index.php', and when I typed http://192.168.2.100/index.php' it is also ok, H

Re: [us...@httpd] cgi script unable to create files on server.

2009-04-12 Thread m jamal
How can i configure apache server installed on my computer to allow cgi scripts to create files. --- On Sun, 4/12/09, Doug McNutt wrote: From: Doug McNutt Subject: Re: [us...@httpd] cgi script unable to create files on server. To: users@httpd.apache.org Date: Sunday, April 12, 2009, 4:32 PM A

Re: [us...@httpd] cgi script unable to create files on server.

2009-04-12 Thread Doug McNutt
At 04:16 -0700 4/12/09, m jamal wrote: I am new to apache.The problem is that when i run a cgi script written in c++,all scripts run fine except those which create a file on server computer. My web host simply does not allow that for security reasons. Your visitors are operating with only "

Re: [us...@httpd] cgi script unable to create files on server.

2009-04-12 Thread m jamal
It says "could not open database".This is same error message which i have coded my script to show when it fails to open file. --- On Sun, 4/12/09, André Warnier wrote: From: André Warnier Subject: Re: [us...@httpd] cgi script unable to create files on server. To: users@httpd.apache.org Date: S

Re: [us...@httpd] cgi script unable to create files on server.

2009-04-12 Thread André Warnier
m jamal wrote: I am new to apache.The problem is that when i run a cgi script written in c++,all scripts run fine except those which create a file on server computer.For example i have written a script that creates a file to store user info.It runs fine.It collects info but when it tries to cr

[us...@httpd] cgi script unable to create files on server.

2009-04-12 Thread m jamal
I am new to apache.The problem is that when i run a cgi script written in c++,all scripts run fine except those which create a file on server computer.For example i have written a script that creates a file to store user info.It runs fine.It collects info but when it tries to create a file to s