Re: [PHP] Re: I rest my case

2001-10-31 Thread Mike Frazer
Apache has a high learning curve. PHP isn't terribly hard to pick up on if you already know the basics of programming. Also, you may want to check out the newsgroup comp.infosystems.www.servers.unix for help with Apache if you continue to have problems. It appears from all the info you gave us

RE: [PHP] Re: I rest my case

2001-10-30 Thread Joseph Blythe
-php-source .phps Just a thought! Joseph -Original Message- From: J W W L (Warwick) Berg [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 31 October 2001 3:15 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: I rest my case Hey thanks guys for the help, but it's still not happening. Apach

Re: [PHP] Re: I rest my case

2001-10-30 Thread David Robley
On Wed, 31 Oct 2001 15:44, J W W L (Warwick) Berg wrote: > OK, there goes any pretense of intelligence that I may have been able > to muster ;-) > > The AddType tag was found inside another as follows: > > > > Is there some way I can check if this module is present, otherwise what > you're saying

Re: [PHP] Re: I rest my case

2001-10-30 Thread Warwick
OK, there goes any pretense of intelligence that I may have been able to muster ;-) The AddType tag was found inside another as follows: Is there some way I can check if this module is present, otherwise what you're saying is that the AddType isn't being executed if the is false, yes? Wha

Re: [PHP] Re: I rest my case

2001-10-30 Thread Jason Brooke
John, Jason didn't literally mean for you to search for the exact string '' - he was telling you to look through the various types of tags found in your httpd.conf file, such as , etc etc > There is no element in the httpd.conf. Is that where I should be > looking? > Warwick > > > Jason Murra

Re: [PHP] Re: I rest my case

2001-10-30 Thread David Robley
On Wed, 31 Oct 2001 15:15, Jason Murray wrote: > > Hey thanks guys for the help, but it's still not happening. > > Apache had already the AddType lines mentioned by y'all. > > It's possible the AddType lines are inside a container that > will ensure they're not executed. Backtrack to the > elemen

RE: [PHP] Re: I rest my case

2001-10-30 Thread Warwick
There is no element in the httpd.conf. Is that where I should be looking? Warwick Jason Murray wrote: >> Hey thanks guys for the help, but it's still not happening. >> Apache had already the AddType lines mentioned by y'all. > > It's possible the AddType lines are inside a container that > w

RE: [PHP] Re: I rest my case

2001-10-30 Thread Jason Murray
> Hey thanks guys for the help, but it's still not happening. > Apache had already the AddType lines mentioned by y'all. It's possible the AddType lines are inside a container that will ensure they're not executed. Backtrack to the element that the AddType lines are in, and see what it does.

[PHP] Re: I rest my case

2001-10-30 Thread Warwick
Hey thanks guys for the help, but it's still not happening. Apache had already the AddType lines mentioned by y'all. Any other ideas? Thanks Warwick J W W L Berg wrote: > Hi all > > Sorry about what is probably a total dickhead about to enter your midst, > but I've never installed php or

[PHP] Re: I rest my case

2001-10-30 Thread Mike Frazer
PHP is a server-parsed language. You need to add the right directives to your httpd.conf file in the global config section. They should be something *like* the following: AddType application/x-httpd-php .php4 .php3 .phtml .php AddType application/x-httpd-php-source .phps You may also need