[PHP] PHP + Apache + IMAP-SSL + LDAP = Headache

2002-02-21 Thread J. Rashaad Jackson
Hello all: I am attempting to utilize IMP 3.0 as web based e-mail. In order to do this, I had to recompile PHP with --with-imap (imap-2001a from UW), --with-xml, and --with-xml (God know why, but that's what IMP wanted). All went well, everything configured and compiled happily. Then I tried

[PHP] PHP Apache with SSL

2001-03-11 Thread Daniel B I
Hello, any idea how to limit file access (php files) by protocol type call? I mean how could I serve a php file only if it is called with SSL (https://... not http://...) I saw this on a site when I was refused because I didn't use secure protocol, and I wonder, how could I do that? Is there a

Re: [PHP] PHP Apache with SSL

2001-03-11 Thread Rouvas Stathis
In .htaccess use SSLRequireSSL for AuthType Config and redirect to https using ErrorDocument. Example for www.foo.goo/sec .htacess AuthType Config SSLRequireSSL ErrorDocument 403 https://www.foo.goo/sec Options -Indexes Options directive is not neccessary but I assume that if