RE: [EMAIL PROTECTED] Getting WHOIS info

2005-12-28 Thread Maurer, Hermann
Hi, > -Original Message- > From: Gerry Danen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 28, 2005 10:56 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Getting WHOIS info > > I want to create a page where I enter an IP address then exec() to run > whois and then di

Re: [EMAIL PROTECTED] which PHP

2005-12-28 Thread Dan Jallits
This has nothing to do with compatability. What you want to do is download PHP from php.net/downloads/ ensuring that you get the right one for your OPERATING SYSTEM (This will usually be either the Windows version or the Unix/Linux one.) There are multiple tutorials on httpd.apache.org and php.net

[EMAIL PROTECTED] which PHP

2005-12-28 Thread mark student
Hi, Which site has the "easiest, most compatable with Apache 1" PHP to download and install. Thanks   Yahoo! DSL Something to write home about. Just $16.99/mo. or less

[EMAIL PROTECTED] Getting WHOIS info

2005-12-28 Thread Gerry Danen
I want to create a page where I enter an IP address then exec() to run whois and then display the output. I like to do this in PHP 5. This is what I try: $arg = trim($_GET[ip]); // get IP address echo"ARIN:"; $out= "/home/website/work/" . $arg . ".txt" ; $cmd= "whois -h whois.arin.n

Re: [EMAIL PROTECTED] php & security per page per user

2005-12-28 Thread Gerry Danen
I have learned a lot from looking at scripts from hotscripts.com and from phpBB. You may want to start there. Check out http://www.hotscripts.com/ but be aware that not every submission is a solid and secure program. Gerry On 12/28/05, JC <[EMAIL PROTECTED]> wrote: > Hi everyone, > > I'm trying

RE: [EMAIL PROTECTED] php & security per page per user

2005-12-28 Thread Yanbin Ma
Try this: AuthType Basic AuthName "admins only" AuthUserFile /your_path/your_user_pass_file.pass Require user mini_me Order Allow,Deny Allow from 10.0.10.7 Yanbin Ma -Original Message- From: JC [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 4:39 PM To:

[EMAIL PROTECTED] php & security per page per user

2005-12-28 Thread JC
Hi everyone, I'm trying to develop an internal website that requires security for specific page per specific user. For example: I have page1.php, page2.php, page3.php, and page4.php. I also have user1, user2, user3, and userx. Each user has his/her own password. Now, user1 and user2 can

Re: [EMAIL PROTECTED] suexec (solved)

2005-12-28 Thread rob
I have fixed it. I had to put my files in the home dir. that was complied in with suexec :-P On Wed, 28 Dec 2005 19:11:14 + (GMT), [EMAIL PROTECTED] wrote: > > Rob - What is the full definition for your virtual host > container please? > > Keith > > > On Wed, 28 Dec 2005 [EMAIL PROTECTED

RE: [EMAIL PROTECTED] Problem with Redirect

2005-12-28 Thread Kaplan, Andrew H.
Hi there -- Yes that is correct. The idea is the following: If a user wants to access the web page in question, he/she will enter the URL and automatically have the SSL connection to the page. There should not be any need for the user to specifically type https. A person should be able to type h

RE: [EMAIL PROTECTED] Problem with Redirect

2005-12-28 Thread httpd2
I'm not sure if you can change the protocol from http to https in a redirect. According to your virtual hosts anything sent to port 80 will get sent to SSL on port 443. Is this what you want to do? Keith On Wed, 28 Dec 2005, Kaplan, Andrew H. wrote: > To: users@httpd.apache.org > From: "

Re: [EMAIL PROTECTED] suexec

2005-12-28 Thread httpd2
Rob - What is the full definition for your virtual host container please? Keith On Wed, 28 Dec 2005 [EMAIL PROTECTED] wrote: > To: users@httpd.apache.org > From: [EMAIL PROTECTED] > Subject: [EMAIL PROTECTED] suexec > > Hey guys. > > > Trying to get this thing to work. But am getting t

RE: [EMAIL PROTECTED] Make Apache Linux paths case insensitive?

2005-12-28 Thread Arthur DiSegna
I will give it a read Thanks Arthur DiSegna Network Operations Center Authentium, Inc. 7121 Fairway Drive Suite 102 Palm Beach Gardens, FL 33418 Phone: 561-575-3200 ext. 4135 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005

[EMAIL PROTECTED] suexec

2005-12-28 Thread rob
Hey guys. Trying to get this thing to work. But am getting this error. [2005-12-28 13:36:30]: uid: (514/dspam) gid: (514/514) cmd: dspam.cgi [2005-12-28 13:36:30]: command not in docroot (/web/spam/html/dspam.cgi) the users home is /web/spam/html the doc root (default host) is /web the virtua

RE: [EMAIL PROTECTED] Problem with Redirect

2005-12-28 Thread Kaplan, Andrew H.
Hi there -- Yes I do. Just to make sure we are on the same page with this, I have the virtual server section of the file shown below: ServerName (ip address) ServerAdmin (email address) DocumentRoot /var/www/html Redirect / https://(ip address) ServerNa

Re: [EMAIL PROTECTED] Problem with Redirect

2005-12-28 Thread httpd2
Hi Andrew. Do you have a seperate Virtual server listening on port 80 for the standard non-SSL requests, and a seperate SSL-enabled virtual server listening for connections on post 443? Keith On Wed, 28 Dec 2005, Kaplan, Andrew H. wrote: > To: users@httpd.apache.org > From: "Kaplan, Andrew

[EMAIL PROTECTED] Make Apache Linux paths case insensitive?

2005-12-28 Thread httpd2
Hi Arthur. I'm working my way through the manual, and from what I've read so far you may need to match on regular expressions and use mod_rewrite. This is a powerful alternative to hard-coding the directory paths with aliases. http://httpd.apache.org/docs/2.0/misc/rewriteguide.html HTH - Kei

[EMAIL PROTECTED] Problem with Redirect

2005-12-28 Thread Kaplan, Andrew H.
Hi there –   I have Apache 2.0.52 running on one of our servers and I am having problems with redirecting port 80 connections to port 443. When I type the url: https://, I get to the page in question. However, when I type the URL: http://, I do not get the connection.   I modified t

[EMAIL PROTECTED] apr_hash collisions

2005-12-28 Thread toni pérez
hello list, What happend when I do apr_hash_set(table,key,APR_HASH_KEY_STRING,value) and the key exist and produce a collision? overwrite the value? nothing? thanks,

[EMAIL PROTECTED] Make Apache Linux paths case insensitive?

2005-12-28 Thread Arthur DiSegna
Hello, I am moving my IIS webserver to Apache on Suse and was wondering how to make the web requests case insensitive? For example. On IIS the URL is http://vhost1.mydomain.com/directory1 Directory1 one on the file system could be directory1 or Directory1 or DIRECTORY1 and the site is still a

[EMAIL PROTECTED] Large config file problem

2005-12-28 Thread Grzegorz Nosek
Hello all, I have encountered a problem with apache2 (debian sarge 2.0.54-5 release). If my ssl.conf config file exceeds a certain size, apache fails to start (error code 1) with no messages in error.log. Moving some domains from this config into another file seems to fix the problem but our admi

Re: [EMAIL PROTECTED] Detecting Javascript via Apache 2

2005-12-28 Thread httpd2
Thankyou Sean and others for all the replies. I will check out the folowing: http://www.w3schools.com/js/default.asp And more specifically here: http://www.w3schools.com/js/js_howto.asp http://www.w3schools.com/js/js_browser.asp Regards - Keith Roberts

Re: [EMAIL PROTECTED] Detecting Javascript via Apache 2

2005-12-28 Thread Sean Davis
On 12/27/05 6:49 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > Hi all. > > Is it possible for apache 2.0 to detect if a browser has > javascript enabled when a page is requested, and then > passing this value to PHP? > > This would allow me to serve different page content, > dependi

[EMAIL PROTECTED] File access Problem

2005-12-28 Thread Rakhi Verma
Hi, I am facing file access errors using apache on linux server. I am trying to open a file (with rwx permissions to u,g and o i.e mode=777 ) from a cgi script (.pl) using Apache Web server. i.e. my html page invokes a perl script wchich tries to open an existing file wit

[EMAIL PROTECTED] Unable to build apache2.2.0 on AIX 5.3 with GNU Make 3.80

2005-12-28 Thread MILET David
Hello,   I'm trying to build Apache 2.2.0 on AIX 5.3. The configure goes fine; or at least it completes successfully.   ./configure --prefix=/sma592_i1/tmp/SAB/apache2.2.0 --enable-ssl=static --with-ssl=/scm/vobs/rlsCOTS/openssl/AIX   But when I run "make", this runs for a while and then te

Re: [EMAIL PROTECTED] not showing .jpg as a list

2005-12-28 Thread Andrey Kuznetsov
Check your # # IndexIgnore is a set of filenames which directory indexing should ignore # and not include in the listing. Shell-style wildcarding is permitted. # IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t and make sure .jpg is not in the list, if it is the server will not show them i