[PHP] Apache

2002-03-20 Thread jtjohnston
Anyone know of a good apache group? I want to hide the structure of a directory when there is no idex.html present J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] apache

2001-02-18 Thread Brandon Feldhahn
hi everyone, ok i just DLed apache httpd server and put all the files in the httpd folder and made the chages is the httpd.conf file for php to work, but it just shows as text or trys to make me downlaod the site. Whats going on? What can i do so it will recongnize php? -- PHP General Mailing L

[PHP] Apache

2001-01-27 Thread [ rswfire ]
I've encounted some serious problems with Apache. I'm about to claim to be an IIS fan real soon!! Can anyone help me with the following... 1. Why does $PHP_SELF include /php/php.exe in the variable? How can I stop it from doing that? 2. Same thing with $SCRIPT_NAME as $PHP_SELF except it

[PHP] Apache

2001-08-02 Thread [EMAIL PROTECTED]
This is just a little bit off-topic - sorry I'm running Mandrake 8.0 and am pretty new to Linux. I want to download my entire website to my hard drive and put it in hte /var/www folder, but apache is the owner and the group for that directory. I'm just wondering, if I chown the directory so th

[PHP] apache authentication

2002-01-14 Thread aaron . lake
Hi, I am using the Nusphere application server with apache user directories. I have several protected user directories that are of different realms. When a user logs into the 'secure area' i would like to send them to pages contained in a secure directory but pass the encoded user:pass in the UR

[PHP] apache authentication

2002-01-14 Thread aaron . lake
Apparently i have been unclear, allow me to rephrase: I want to send user:pass to an apache authentication header for a apache protected user directory. Unfortunately, I have php installed as CGI so native php authentication will not function. I would like to either send the user:pass via GET

[PHP] Apache & PHPMyAdmin

2002-03-02 Thread jtjohnston
Hi, No one seems to be home at my favourite apache newsgroup :) so I'll ask here. I'm trying to reconfigure my PHPMyAdmin. What do I add to my conf file so as in http://phpmyadmin.somehere.com/ points to a specific directory on my (windows) drive? For example, how would I point http://www.somehe

Re: [PHP] Apache

2002-03-21 Thread scott furt
Errmm... i don't know any apache groups, but if you want to do what you ask, just read the documentation, it's easy :-) jtjohnston wrote: > Anyone know of a good apache group? > I want to hide the structure of a directory when there is no idex.html > present > > J > > > -- PHP General Ma

Re: [PHP] Apache

2002-03-21 Thread jtjohnston
Scott , I am. :) I'm looking at IndexIgnore but not sure if it's what I want? John > Errmm... i don't know any apache groups, but > if you want to do what you ask, just read the > documentation, it's easy :-) > > jtjohnston wrote: > > Anyone know of a good apache group? > > I want to hide the str

Re: [PHP] Apache

2002-03-21 Thread jtjohnston
I'm also looking at this in my .conf. I know putting something here is the answer, but what :) Options FollowSymLinks AllowOverride All J Scott Furt wrote: > Errmm... i don't know any apache groups, but > if you want to do what you ask, just read the > documentation, it's easy :-) >

Re: [PHP] Apache

2002-03-21 Thread Jan Rademaker
On Thu, 21 Mar 2002, jtjohnston wrote: > I'm also looking at this in my .conf. I know putting something here is the > answer, but what :) I believe it was something like the NoIndex option, but I'm not sure... > > > Options FollowSymLinks > AllowOverride All > > > J > > Scott Furt wr

Re: [PHP] Apache

2002-03-21 Thread heinisch
At 21.03.2002 03:18, you wrote: >Errmm... i don't know any apache groups, but >if you want to do what you ask, just read the >documentation, it's easy :-) > >jtjohnston wrote: >>Anyone know of a good apache group? >>I want to hide the structure of a directory when there is no idex.html >>present

Re: [PHP] Apache

2002-03-21 Thread Matt Williams
On Thursday 21 March 2002 08:28, jtjohnston wrote: > I'm also looking at this in my .conf. I know putting something here is the > answer, but what :) > > >     Options FollowSymLinks >     AllowOverride All > > > J Options -Indexes matt -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Apache

2002-03-21 Thread Erik Price
Isn't it just a matter of setting the permissions? apache can't have read access to this directory, that's all. Erik On Thursday, March 21, 2002, at 03:28 AM, jtjohnston wrote: > I'm also looking at this in my .conf. I know putting something here is > the > answer, but what :) > > >

Re: [PHP] Apache

2002-03-21 Thread Jason Wong
On Friday 22 March 2002 00:54, Erik Price wrote: > Isn't it just a matter of setting the permissions? apache can't have > read access to this directory, that's all. No, he doesn't want apache to *list* files in that directory but still to be able to serve files *from* that directory. -- Ja

Re: [PHP] Apache

2002-03-21 Thread Mika Tuupola
On Fri, 22 Mar 2002, Jason Wong wrote: > No, he doesn't want apache to *list* files in that directory but still to be > able to serve files *from* that directory. Just add an empty index file? -- Mika Tuupola http://www.appelsiini.net/~tuupola/ -- PHP General M

Re: [PHP] Apache

2002-03-21 Thread Rasmus Lerdorf
So either turn off the DirectoryIndex or put an index.html in the dir. On Fri, 22 Mar 2002, Jason Wong wrote: > On Friday 22 March 2002 00:54, Erik Price wrote: > > Isn't it just a matter of setting the permissions? apache can't have > > read access to this directory, that's all. > > > No, he d

Re: [PHP] Apache

2002-03-21 Thread Jason Wong
On Friday 22 March 2002 01:38, Mika Tuupola wrote: > On Fri, 22 Mar 2002, Jason Wong wrote: > > No, he doesn't want apache to *list* files in that directory but still to > > be able to serve files *from* that directory. > > Just add an empty index file? But that's a kludge. Anyway someone h

Re: [PHP] Apache

2002-03-21 Thread Erik Price
On Thursday, March 21, 2002, at 12:22 PM, Jason Wong wrote: > On Friday 22 March 2002 00:54, Erik Price wrote: >> Isn't it just a matter of setting the permissions? apache can't have >> read access to this directory, that's all. > > > No, he doesn't want apache to *list* files in that director

Re: [PHP] Apache

2002-03-21 Thread Jason Wong
On Friday 22 March 2002 01:39, Erik Price wrote: > On Thursday, March 21, 2002, at 12:22 PM, Jason Wong wrote: > > On Friday 22 March 2002 00:54, Erik Price wrote: > >> Isn't it just a matter of setting the permissions? apache can't have > >> read access to this directory, that's all. > > > > No

AW: [PHP] Apache

2002-03-21 Thread Andres Petralli
tions to what you need. Greets, Andres > -Ursprüngliche Nachricht- > Von: jtjohnston [mailto:[EMAIL PROTECTED]] > Gesendet: Donnerstag, 21. März 2002 09:14 > An: [EMAIL PROTECTED] > Betreff: [PHP] Apache > > > Anyone know of a good apache group? > I want to hide the st

Re: [PHP] Apache

2002-03-21 Thread jtjohnston
Thanks all :) I went with: http://httpd.apache.org/docs/mod/core.html#options and not put "Indexes" between. John -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Apache 2.0

2002-04-11 Thread Marcin Pasieka
How to install PHP on Apache 2.0 server? Sincerely Marcin Pasieka

[PHP] PHP & Apache

2002-04-29 Thread J. Anderson Scarbrough
This may be slightly off topic so please forgive me, but... I am trying to get my apache server up and running with PHP and basic authentication. Everything appears to be okay except the authentication portion. When I try to access the directory requiring authentication I reciever a 500 error

[PHP] apache security

2002-06-19 Thread Josep R. Raurell
Hello. I think nobody had send this warnig to the list. Sorry if you already nows. This text is from the apache web: SECURITY ADVISORY Versions of the Apache web server up to and including 1.3.24 and 2.0 up to and including 2.0.36 contain a bug in the routines which deal with invalid request

[PHP] apache + ftp!

2001-11-12 Thread Benjamin
hey group! i have apache installed on an win2000 machine and now i need an good and stable ftp server! which one does i take! thank you, ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To cont

[PHP] Apache 2.0.28

2001-11-16 Thread Jobarr
I need a build of PHP that can be used as a module with Apache 2.0.28 beta. Anyone know where I could find one? thanks -Jobarr -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list adm

[PHP] Apache and "/"

2002-01-09 Thread Todd Cary
I forgot the parameter to change in httpd.conf so when the trailing "/" is left off, the "index.html" will be executed. Anyone know the parameter? Many thanks Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mai

[PHP] apache & php

2001-02-14 Thread ited
help! i want to get started! how do configure Apache to work with PHP? apparently it is not because my browser will not "find" the test files.php. please help me to test it. i am using Mac OS X (pb) so i should follow any Unix procedure ok, i think. thank you. -- PHP General Mailing List (

[PHP] Apache config

2001-02-17 Thread Sitkei es Tarsa Bt
Hi, I would like to use Apache and PHP4 on W2K. If you have any good Httpd.conf file for the Apache, please send me. Thank you. Paul. [mailto:[EMAIL PROTECTED]] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

RE: [PHP] apache

2001-02-18 Thread Jeff Oien
These tutorials were very helpful for me: http://www.thickbook.com/extra/index.phtml?t=in Jeff Oien > hi everyone, ok i just DLed apache httpd server and put all the files in > the httpd folder and made the chages is the httpd.conf file for php to > work, but it just shows as text or trys to make

[PHP] Apache Problem

2001-01-13 Thread Chris
I was always using pws until recently when I got Apache for windows. Unfortunately when apache gets to a php file it doesnt parse it, it thinks its a file to download. I uncommented the php lines in the http.conf file but still no use. Does anyone know how to fix this?

[PHP] apache doubt!!!!

2001-01-23 Thread Bruno Freire
Hi ... I'm having some problem's here I'm need to know if my apache server is able to run scripts in a specific date and hour. For example: Every month, in the 15th day, I need to run a script PHP that check my Mysql database for some cause. Is that possible??? I'm realy thanks!!! Brun

[PHP] apache + mssql

2001-01-23 Thread Thor M. Steindorsson
HELP! I need to access a database on a mssql server from a linux box, but the php doesn't recognize any of the mssql statements. Apparently mssql support was not included in the inital php installation (which came with Mandrake 7.2). I know there's the option of downloading the PHP source and co

[PHP] Apache Server

2001-01-27 Thread [ rswfire ]
How come my Apache Server goes down after a short time and forces me to restart it? Shouldn't it just stay active?! _ Get your FREE download of MSN Explorer at http://explorer.msn.com -- PHP General Mailing List (http://www.php.n

Re: [PHP] Apache

2001-01-29 Thread Christian Reiniger
On Sunday 28 January 2001 03:57, [ rswfire ] wrote: > 1. Why does $PHP_SELF include /php/php.exe in the variable? How can I > stop it from doing that? You're using PHP as CGI. Try using the shared module. > 2. Same thing with $SCRIPT_NAME as $PHP_SELF except it does not > include the filenam

Re: [PHP] Apache

2001-01-29 Thread Markus Fischer
On Sat, Jan 27, 2001 at 09:57:35PM -0500, [ rswfire ] wrote : > 3. How can I turn on directory browsing? I am receiving a Forbidden error > whenever there isn't a default document in a directory. htpd.conf: Options Indexes or in .htaccess Options Indexes You'll find all documentation at

[PHP] Apache Mod_Auth_DB.

2001-02-05 Thread Dave McNicholl
Hi, Anyone using PHP with mod_auth_db ? I was using MySQL but when I get 40 hits a sec MySQL is just a bit too much. Even at low hit rates I am running 70 MySQLds. http://www.thewebmasters.net/php/Htpasswd.phtml doesn't use db and http://www.thewebmasters.net/php/AccessDBM.phtml is dbm :

[PHP] apache authentication

2001-03-14 Thread Michael A. Peters
This isn't a php problem as much as an apache problem, however, it is = webmasters of php sites that would have dealt with this. Here's the dilemna- If you use mod_dav to maintain a php application that uses = username/password authentication for the web app, it doesn't play very = nice. At leas

[PHP] PHP & Apache

2001-03-19 Thread Patrick
Ok I had this working once and again it is eluding me on win98 I have added ScriptAlias /php/ "d:/php/" AddType application/x-httpd-php .php .phtml Action application/x-httpd-php "/php/php.exe" but PHP still will not work I have got Perl working and had PHP working but I neglected to save

[PHP] Apache user

2001-04-05 Thread Chris Mason
Can anyone tell me how to get the user apache is running as from php? Chris Mason Box 340, The Valley, Anguilla, British West Indies Tel: 264 497 5670 Fax: 264 497 8463 USA Fax (561) 382-7771 Take a virtual tour of the island http://net.ai/ The Anguilla Guide Find out more about NetConcepts www.n

[PHP] php / apache

2001-06-29 Thread Pétur Björn Thorsteinsson
can anyone tell me how to configure a php script so that it can only be accessed by other scripts and not directly by typing its url in the webrowser? -petur -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PRO

[PHP] Apache/phpinfo

2001-07-24 Thread Tom Malone
How can you tell if your host has PHP installed as mod_php or in CGI mode on the webserver (Apache in my case)? Is it in phpinfo.php? If so, where - I couldn't find it... Thanks Tom Malone -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

RE: [PHP] Apache

2001-08-03 Thread Angerer, Chad
: Thursday, August 02, 2001 8:16 AM To: [EMAIL PROTECTED] Subject: [PHP] Apache This is just a little bit off-topic - sorry I'm running Mandrake 8.0 and am pretty new to Linux. I want to download my entire website to my hard drive and put it in hte /var/www folder, but apache is the owne

[PHP] Apache configuration

2001-04-11 Thread Alexis Antonakis
Hi, I am having problems in trying to configure Apache on my PC correctly. FYI I am using Win95 and PHP4. I have configured Apache so that it will run PHP scripts, however when I try to start a session I get the following messages: --- Warning: open(/tmp\sess_20e483a01d217181f5379858afee4cf4, O

[PHP] apache toolbox

2001-05-02 Thread Chris Schneck
This might be a useful link for some people who are having problems with the combination of apache + ssl / php / mysql. I've used it and I had a couple problems, but after I actually read the README, everything was smooth :) www.apachetoolbox.com -- PHP General Mailing List (http://www.php.net

[PHP] Apache Directives

2001-08-07 Thread Sean Cook
I am trying to figure out a way to run an application such that regardless of the url I achieve the same results. This is similar to the way apache/mod_perl works ... example SetHandler perl-script PerlHandler somehandler::foo now anything that access /login/salkdfjaslkjf

[PHP] apache don´t understand php!!----¡¡apache no entiende php!!

2001-11-15 Thread Alejandro
I have a problem:I have a php page wich runs well when I run it, but when I run a html page and links the php file, the source code is seen on the screen. It´s like apache wouldn't understand php!!. Any ideas? Thanks Hola!.tengo un problema y es que tengo una página .php que, cuando la llamo por

RE: [PHP] apache authentication

2002-01-14 Thread Simon Ritchie
; Sent: 14 January 2002 17:41 > To: [EMAIL PROTECTED] > Subject: [PHP] apache authentication > > > Hi, > > I am using the Nusphere application server with apache user directories. > I have several protected user > directories that are of different realms. When a user logs

Re: [PHP] apache authentication

2002-01-14 Thread Miles Thompson
I'm trying to do a similar thing, although I'm running PHP as an Apache module. There's a directory I want to protect, containing PDf files, access to which will be constrained by .htaccess. Our users have already logged in through a custom login script. I could modify this script so that when

RE: [PHP] apache authentication

2002-01-16 Thread Simon Ritchie
ent: 14 January 2002 17:41 > To: [EMAIL PROTECTED] > Subject: [PHP] apache authentication > > > Hi, > > I am using the Nusphere application server with apache user directories. > I have several protected user > directories that are of different realms. When a user logs into t

RE: [PHP] apache authentication

2002-01-17 Thread Jon Haworth
> SECURITY WARNING: This code uses a hard-coded user-name and > password, which begs the question of where they would come from > in the real world. You could collect them via a form, but then > they will be sent to the PHP script as arguments and so the > password will be visible in the URL b

[PHP] Apache - Virtual Name

2002-02-15 Thread André Felix Miertschink
How can I configure the apache, so that my local access is different from http://localhost. I want to access my local server through a virtual name (Example: http://www.test.com). I only want to change the name "localhost" for any other name. I already possess a domain (Example: www.test.com) a

Re: [PHP] Apache & PHPMyAdmin

2002-03-03 Thread Greg Donald
On Sun, 3 Mar 2002, jtjohnston wrote: >No one seems to be home at my favourite apache newsgroup :) so I'll ask >here. >I'm trying to reconfigure my PHPMyAdmin. > >What do I add to my conf file so as in http://phpmyadmin.somehere.com/ >points >to a specific directory on my (windows) drive? > >For

[PHP] apache htpasswd win32

2002-03-13 Thread DrouetL
Hi everybody I would like to know if somebody already wrote a script to allow apache user administration from php under Win32 All the scripts I found are made for linux (using crypt function) I tried to generate the password with the md5 function but it's not working perhaps I don't know how to

[PHP] apache in win32 !

2002-03-26 Thread Septic Flesh
I know that this is 4 php questions but I bet most of you came across something similar. well I am running an apache server both in a linux and a win2k . .to support my php code.. does the .htaccess & .htpasswd work in both OSs? In linux works just fine, while in windows it prompts for the user

[PHP] APACHE + SSL + PHP

2002-03-31 Thread Septic Flesh
I download apache 1.3.24 + php 4.1.2 + mod_ssl-2.8.8-1.3.24 $ compile all $install all (not php yet) apache runs ok with or without ssl then compile php and install it.. I get an error cannot load shared library libphp4.so y ? I compile apache -enablemodule-ssl/so what I miss out and I g

Re: [PHP] Apache 2.0

2002-04-11 Thread Tyler Longren
PHP or the next stable version. Tyler - Original Message - From: "Marcin Pasieka" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 11, 2002 7:37 AM Subject: [PHP] Apache 2.0 How to install PHP on Apache 2.0 server? Sincerely Marcin Pasieka

Re: [PHP] Apache 2.0

2002-04-11 Thread Andrew Scott
On 11 Apr 2002 at 14:37, Marcin Pasieka wrote: > How to install PHP on Apache 2.0 server? > As far as I can see, at the moment, the only way is to use cgi. It looks like that API stuff has to be rewritten/updated a little. However, since Apache 2 is now released, the API shouldn't be changing

[PHP] php & apache 2

2002-04-24 Thread Michal Dvoracek
Hello, when will be possible to compile php as static module with apache 2? Regards, Michal Dvoracek [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Apache: SERVER_NAME gone?

2002-04-26 Thread The_RadiX
Hi Y'all... Ok. I just got Apache 1.3.xx and I have PHP4.1.1 and MySQL 3.23.47 on WinXP Pro... I am currently using IIS5.1 with PHP4 and MySQL but I'd like to move across to Apache.. Catch is? I have hunted through all the FAQ's for Apache and there is no mention of how-to configure Apach

[PHP] Re: PHP & Apache

2002-04-29 Thread DrTebi
Hi, first of all it's not a good idea to use your /etc directory for the user files, or to chmod anything to 777 that doesn't really need it. I suggest you try the following: Let's assume the directory you want to password-protect is at /home/apache/htdocs/mydomain.com/secure First you would creat

[PHP] setup php apache

2002-06-05 Thread Mac Ne
Hi I need help to setup php , apache and my sql on Freebsd 4.5...I am moving from windows 2000 to Freedbsd 4.5..I know basic stuff on Freebsd..can some please send me a step by step to install,setup and configure it Thx __ Do You Yahoo!? Yahoo

[PHP] apache/oracle/php

2002-06-11 Thread Michael P. Carel
Hi to all, Is there anyone who could give me some reasons why does my php script with oracle function does'nt work if i run apache as nobody/nobody? My script only work if i run apache as oracle/dba. Regards, Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: h

[PHP] Apache / PHP Question

2001-11-04 Thread George E. Papadakis
Hello, In my lnx server I can do index.php/var1/var2/var3 I try the same exact thing in windows (using the same config (Apache/php) ) and it gives me internal server error. Any ideas? Thanks -- phaistonian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROT

[PHP] Apache User Groups?

2001-11-10 Thread Eric
Does anyone know of a usergroup for Apache? I am having difficulties finding one and am having some troubles with Apache. Thanks Eric -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the li

Re: [PHP] apache + ftp!

2001-11-12 Thread Olexandr Vynnychenko
Hello Benjamin, Monday, November 12, 2001, 12:00:22 PM, you wrote: B> hey group! B> i have apache installed on an win2000 machine and now i need an good and B> stable ftp server! which one does i take! B> thank you, ben And what about W2k's built-in FTP server? Has someone used it? Is it so b

Re: [PHP] apache + ftp!

2001-11-12 Thread Daniel Masur
never had it runnin, but i didnt heard bout hacking g6ftp. "Olexandr Vynnychenko" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello Benjamin, > > Monday, November 12, 2001, 12:00:22 PM, you wrote: > > B> hey group! > > B> i have apache installed on an

Re: [PHP] apache + ftp!

2001-11-12 Thread R'twick Niceorgaw
I use war ftp.. its a free ware and has good features - Original Message - From: "Olexandr Vynnychenko" <[EMAIL PROTECTED]> To: "Benjamin" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, November 12, 2001 8:37 AM Subject: Re: [PHP] apache

[PHP] PHP + apache .htaccess

2001-11-14 Thread EnriGA
Dear all I dunno this post is in right group or not.If no, please ignore. I am a user that use Linux, apache with PHP + mySQL. I have already written a member login security system with PHP to block any unathorized user to see my homepage. But unfortnately, I found that if ppl know the ful

Re: [PHP] Apache 2.0.28

2001-11-17 Thread Tyler Longren
t; Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, November 17, 2001 9:51 AM Subject: Re: [PHP] Apache 2.0.28 > The current php will work with apache 2.x > use:--with-apxs2 > when you configure php > > Jobarr wrote: > > > I need a build of PHP

Re: [PHP] Apache 2.0.28

2001-11-17 Thread Vincent Stoessel
The current php will work with apache 2.x use:--with-apxs2 when you configure php Jobarr wrote: > I need a build of PHP that can be used as a module with Apache 2.0.28 beta. > Anyone know where I could find one? > > thanks > -Jobarr > > > > -- Vincent Stoessel [EMAIL PROTECTED] Java

Re: [PHP] Apache 2.0.28

2001-11-17 Thread Jobarr
I read something saying that the API changed from 2.026 to 2.0.28 and when I tried using a Apache2 php module, it said it was not compatible with this version of Apache. -Jobarr "Vincent Stoessel" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > The current php

[PHP] Apache Php SSL

2001-12-03 Thread Chris Allen
Hey, When rebuilding Apache/Php/Modssl etc can I re-use my existing server key and server certificate ? Do I need to get a new certificate from Thawte/Verisign even if its for the same host? Thanks, CCMA -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTE

[PHP] Apache log files

2001-12-07 Thread Dan McCullough
I was looking for the name of the addon to webalizer that makes it nice looking and better features. I have looked over and over again, but I cannot find it, anyone know the name? dan = dan mccullough "Theres no such thing as a prob

[PHP] PHP & APACHE Authenticate

2001-12-13 Thread Silvia Mahiques
Hi Friends!: I have some problems with APACHE Authenticate. I have a directory with access control. This is his structure: file_1.php4 ... file1_1.php4 ...

[PHP] PHP & APACHE Authenticate

2001-12-13 Thread Silvia Mahiques
-Mensaje original- De: Silvia Mahiques [mailto:[EMAIL PROTECTED]] Enviado el: jueves, 13 de diciembre de 2001 10:32 Para: [EMAIL PROTECTED] Asunto: PHP & APACHE Authenticate Hi Friends!: I have some problems with APACHE Authenticate. I have a directory with access con

[PHP] Apache Error 500

2001-12-31 Thread patricka
Hi, I am using the list comment to decompose urls for navigation. This works fine. Except on one particular server and I don't know why.. if my url is like : test.php everything is ok, but when I use test.php/1, I get the Apache Internal 500 Error. I believe that apache is checking if th

Re: [PHP] Apache and "/"

2002-01-09 Thread Eugene Lee
On Wed, Jan 09, 2002 at 03:47:16PM -0800, Todd Cary wrote: : : I forgot the parameter to change in httpd.conf so when the trailing "/" : is left off, the "index.html" will be executed. Anyone know the : parameter? DirectoryIndex index.html index.htm -- Eugene Lee [EMAIL PROTECTED] -

Re: [PHP] apache & php

2001-02-14 Thread Ankur Verma
helps best regards Ankur Verma HCL Technologies A1CD, Sec -16 Noida, UP India - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 14, 2001 5:31 PM Subject: [PHP] apache & php > help! > > i want to get started! >

RE: [PHP] apache & php

2001-02-15 Thread Maxim Maletsky
Then just follow it. Read INSTALL file in PHP distribution Cheers, Maxim Maletsky -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 9:01 PM To: [EMAIL PROTECTED] Subject: [PHP] apache & php help! i want to get started! ho

RE: [PHP] Apache config

2001-02-18 Thread ..s.c.o.t.t..
i es Tarsa Bt [mailto:[EMAIL PROTECTED]] > Subject: [PHP] Apache config > > > Hi, > I would like to use Apache and PHP4 on W2K. > If you have any good Httpd.conf file for the > Apache, please send me. > Thank you. > Paul. [mailto:[EMAIL PROTECTED]] -- PHP General Mail

[PHP] Apache log analyzer

2001-02-18 Thread John Vanderbeck
Hello, Does anyone know where I might find a good PHP script for analyzing apache logs, with as much information as can be gathered? I looked around on a few of the script sites, but didn't see any and I thought this wierd. - John Vanderbeck - Admin, GameDesign -- PHP General Mailing List (h

[PHP] Apache config -- RedirectMatch

2001-03-02 Thread Kefir Podmasli
Hi, I'm sorry for this OT question, but I need to configure apache to emit 503 accross the whole server _except_ in two directories. I thought I'd use RedirectMatch 503 ^/(?!docs|error) but Apache fails to start with "Regular expression could not be compiled." It doesn't grok the assertion.

[PHP] PHP & Apache 2.0

2001-03-05 Thread Benoit
Do someone know when PHP will work as apixs under Apache 2.0 ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] apache+php4 error ..

2001-01-11 Thread Naresh Chafekar
I have windows98, apache 1.3.14, php4. After adding following line in httpd.conf file # for the apache module #LoadModule php4_module c:/php4/sapi/php4apache.dll I get following error while starting apache (which works fine otherwise) Cannot load c:/php4/sapi/php4apache.dll into server: (1157)

Re: [PHP] Apache Problem

2001-01-13 Thread Chris Hayes
> I was always using pws until recently when I got Apache for windows. = > Unfortunately when apache gets to a php file it doesnt parse it, it = > thinks its a file to download. I uncommented the php lines in the = > http.conf file but still no use. Does anyone know how to fix this? Make sure to

[PHP] Apache and $HTTP_SERVER_VARS[]

2001-01-22 Thread Todd Cary
With IIS $path gives the actual path to the directory in which the PHP scripts reside. With Apache, $path is empty. What have I missed? This is my first use of Apache, so it's configuration is new for me. $path = $HTTP_SERVER_VARS[URL]; $path = ereg_replace("/[^/]+$","",$path) . '/'; ech

RE: [PHP] apache doubt!!!!

2001-01-23 Thread Jon Haworth
23 January 2001 12:55 To: '[EMAIL PROTECTED]' Subject: [PHP] apache doubt Hi ... I'm having some problem's here I'm need to know if my apache server is able to run scripts in a specific date and hour. For example: Every month, in the 15th day, I need to run a

Re: [PHP] apache doubt!!!!

2001-01-23 Thread Thierry Coopman
try the CGI version of PHP and call that executable without using your Apache At 9:55 AM -0300 1/23/01, Bruno Freire wrote: >Hi ... >I'm having some problem's here >I'm need to know if my apache server is able to run scripts in a specific >date and hour. > >For example: > >Every month, in t

[PHP] Apache on NT5

2001-01-27 Thread [ rswfire ]
Rasmus, I think that was a really good idea to install Apache on my system. Thanks for the heads up. I am downloading apache_1_3_14_win32_r2.exe. Is that all I need? This is scary new territory for me... I hope this is the right file. ___

RE: [PHP] Apache Server

2001-01-27 Thread Jonathan Sharp
how long does it run for? -Original Message- From: [ rswfire ] [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 27, 2001 8:10 PM To: [EMAIL PROTECTED] Subject: [PHP] Apache Server How come my Apache Server goes down after a short time and forces me to restart it? Shouldn't it

[PHP] apache/SUexec/PHP

2001-02-03 Thread Larry Rosenman
I noticed today that PHP apps run as the WWW user, not the User/Group specified in httpd.conf for virtualhosts. (Module version of PHP running in Apache 1.3.17). Is there any way to get the PHP module to assume the identity similar to the SUexec module will do for CGI? Thanks! -- Larry R

[PHP] Apache and PHP

2001-02-04 Thread Patrick L. Olson
I must be missing something while I had no problem getting perl and SSI working getting PHP to work is eluding me for some reason. I have added this to httpd.conf can someone enlighten me on what may be missing # And for PHP 4.x, use: # AddType application/x-httpd-php .php AddType app

Re: [PHP] PHP & Apache

2001-03-19 Thread Yoshi Melrose
;[EMAIL PROTECTED]> Sent: Monday, March 19, 2001 3:13 AM Subject: [PHP] PHP & Apache > Ok I had this working once and again it is eluding me on win98 I have > added > > ScriptAlias /php/ "d:/php/" > > AddType application/x-httpd-php .php .phtml > > Action

Re: [PHP] PHP & Apache

2001-03-19 Thread Patrick
OK it worked Thanks for the pointers Yoshi - Original Message - From: "Yoshi Melrose" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 19, 2001 4:34 AM Subject: Re: [PHP] PHP & Apache > Patrick, > > Here's how i have my http

[PHP] Apache +Php -----help

2001-03-21 Thread OBB
I have problem making apache1.3.17win32 and php4.0.4 to work on win98se I am able to load both apache and php on startup,did a few php and apache cofiguration i read from the manual and i wrote a script in php and when I execute the php script in apache i got the same php script that i wrot

Re: [PHP] Apache user

2001-04-05 Thread Joe Conway
> Can anyone tell me how to get the user apache is running as from php? > If you're on Linux/Unix, try: echo `whoami`; Hope this helps, Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To conta

RE: [PHP] Apache user

2001-04-05 Thread Johnson, Kirk
Put the call to "whoami" in a call to exec() from inside a PHP script. Kirk > -Original Message- > From: Joe Conway [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 05, 2001 12:26 PM > To: Chris Mason; PHP User Group > Subject: Re: [PHP] Apache user > &

Re: [PHP] Apache user

2001-04-05 Thread Joe Conway
ED]> Sent: Thursday, April 05, 2001 11:32 AM Subject: RE: [PHP] Apache user > Put the call to "whoami" in a call to exec() from inside a PHP script. > > echo exec("whoami"); > ?> > > Kirk > > > -Original Message- > > From: Joe Con

  1   2   3   4   5   >