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 that the problem is
Apache and not PHP.

Mike



J W W L Berg [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 OK, there goes any pretense of intelligence that I may have been able to
 muster ;-)

 The AddType tag was found inside another as follows:

 IfModule mod_php4.c

 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 IfModule
is
 false, yes?

 What a pillock. I can see this is going to be some learning curve.
 Warwick



 Jason Brooke wrote:

  John, Jason didn't literally mean for you to search for the exact string
  'Block' - he was telling you to look through the various types of
  ThisIsAnApacheDirective tags found in your httpd.conf file, such as
  Directory, File etc etc
 
 
  There is no BLOCK 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
   will ensure they're not executed. Backtrack to the Block
   element that the AddType lines are in, and see what it does.
  
   Jason
 
 
 
 




-- 
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]




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 Block
element that the AddType lines are in, and see what it does.

Jason

-- 
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]




RE: [PHP] Re: I rest my case

2001-10-30 Thread Warwick

There is no BLOCK 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
 will ensure they're not executed. Backtrack to the Block
 element that the AddType lines are in, and see what it does.
 
 Jason
 


-- 
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]




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 Block
 element that the AddType lines are in, and see what it does.

 Jason


Might also be the php module not being loaded; check for LoadModule and 
AddModule for entries like:

 LoadModule php4_modulelibexec/libphp4.so
and
 AddModule mod_php4.c

which should both be in the same relative position in the list of 
LoadModule and Addmodule items (probably last in both cases)

If all else fails, I'll be in Auckland in six weeks :-)

-- 
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA  

   I'm spending a year dead for tax purposes.

-- 
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]




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
'Block' - he was telling you to look through the various types of
ThisIsAnApacheDirective tags found in your httpd.conf file, such as
Directory, File etc etc


 There is no BLOCK 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
  will ensure they're not executed. Backtrack to the Block
  element that the AddType lines are in, and see what it does.
 
  Jason




-- 
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]




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:

IfModule mod_php4.c

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 IfModule is 
false, yes?

What a pillock. I can see this is going to be some learning curve.
Warwick



Jason Brooke wrote:

 John, Jason didn't literally mean for you to search for the exact string
 'Block' - he was telling you to look through the various types of
 ThisIsAnApacheDirective tags found in your httpd.conf file, such as
 Directory, File etc etc
 
 
 There is no BLOCK 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
  will ensure they're not executed. Backtrack to the Block
  element that the AddType lines are in, and see what it does.
 
  Jason
 
 
 
 


-- 
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]




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:

 IfModule mod_php4.c

 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
 IfModule is false, yes?

 What a pillock. I can see this is going to be some learning curve.
 Warwick


Well, now check if the Loadmodule and Addmodule lines are in the conf 
file.

Pillock? How British :-)

-- 
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA  

   Dynamic linking error: Your mistake is now everywhere.

-- 
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]




RE: [PHP] Re: I rest my case

2001-10-30 Thread Joseph Blythe

Um! could they be commented out still?

#  AddType application/x-httpd-php .php4 .php3 .phtml .php
#  AddType application/x-httpd-php-source .phps

Make sure you remove the hash signs whatever they called :)

  AddType application/x-httpd-php .php4 .php3 .phtml .php
  AddType application/x-httpd-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. 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 seen it much at all before but am trying
 to do it now.
 
 Using RH 7.1 and Apache 1.3.19
 
 Want to install php4 and mysql combo and totally ignorant.
 
 Installed php rpm.
 
 Restarted apache in case that was needed.
 
 made hello.php  and pointed browser at it.
 
 Got the text, rather than executing it.
 
 Can I surmise that apache isn't set up properly, and if so, could someone
 please point me towards relevant assistance. Got really confused with the
 manual, etc. Not that bright I suppose ;-)
 
 Thanks in advance
 Warwick
 
 
 
 
 
 


-- 
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 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]