Just fiddle the configuration of the server so that it recognises .php3
files as if they were .php.

In Apache, this means you find this line in the config:

  AddType application/x-httpd-php .php

And add one just like it nearby:

  AddType application/x-httpd-php .php3

Also, fiddle the DirectoryIndex line:

  DirectoryIndex index.php3

To look like:

  DirectoryIndex index.php index.php3

(this means a .php file which will be newer obviously will
take precedence over a .php3 file)

You should be right from there.

Jason

-- 
Jason Murray
[EMAIL PROTECTED]
Web Developer, Melbourne IT
"Work now, freak later!"

> -----Original Message-----
> From: Michelle Marcicki [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 04, 2001 1:18 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Newbie Question: Converting PHP3 files to PHP4?
> 
> 
> Hi there,
> 
> I have recently taken over the webmaster responsibility for 
> an educational 
> website.  It is using PHP3 and MySQL.  We had to move it to a 
> new server, that 
> as it turns out only supports PHP4.  I have been looking 
> through all the FAQs, 
> resource sites, manuals and documentation, but all I can find 
> as a solution is 
> to change all my current file extensions .php3 to just .php ! 
>  Can anyone tell 
> me if this will work before I start converting probably close 
> to several hundred 
> files??  I am going to change and test some files, but would 
> like some advice on 
> this!
> 
> The type of errors that I get with the current file setup are 
> when clicking on 
> any of the links that lead to files in PHP3 are:  You have 
> started to download a 
> file of type "application/x-httpd-php3", etc.
> 
> Any other tips or info would be appreciated.  This is a bit 
> urgent, as I have 
> just found out that the site "director/owner" wants it as 
> functional as possible 
> for the start of school this week... so no pressure really... lol.
> 
> Thanks in advance.
> 
> Michelle
> 
> 
> -- 
> 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]

Reply via email to