Re: apache php3 question

2003-10-04 Thread H. Bartel
On 10/02/2003 10:50 AM [EMAIL PROTECTED] (Marc Ramirez) wrote: 1) Make sure it's not in browser/squid cache. 2) In your httpd.conf, you'll probably need to add index.php3 to your DirectoryIndex directive, if you haven't already. DirectoryIndex index.html index.html.var index.php index.php3 I

apache php3 question

2003-10-02 Thread H. Bartel
I have Apache1.3 running with mod_php4. Directory indexes are set to index.html, index.php and index.php3. None of those .php3 pages get parsed, every .php page works fine. It should not be a register_globals problem, since the other .php sites work fine. mod_php3 is not installed, but I

RE: apache php3 question

2003-10-02 Thread Gil Agno Virtucio
] Sent: Thursday, October 02, 2003 8:00 PM To: [EMAIL PROTECTED] Subject: apache php3 question I have Apache1.3 running with mod_php4. Directory indexes are set to index.html, index.php and index.php3. None of those .php3 pages get parsed, every .php page works fine. It should

RE: apache php3 question

2003-10-02 Thread H. Bartel
On 10/02/2003 08:02 PM [EMAIL PROTECTED] (Gil Agno Virtucio) wrote: have you tried adding something like IfModule mod_mime.c AddType application/x-httpd-php .php3 AddType application/x-httpd-php-source .phps /IfModule Well, I haven't tried it, but those AddType things are already

Re: apache php3 question

2003-10-02 Thread Nico Meijer
Hi, Considering: IfModule mod_php4.c AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps /IfModule Change: AddType application/x-httpd-php .php To: AddType application/x-httpd-php .php .php3 And you should be dandy again... Nico

Re: apache php3 question

2003-10-02 Thread H. Bartel
On 10/02/2003 02:58 PM [EMAIL PROTECTED] (Nico Meijer) wrote: Change: AddType application/x-httpd-php .php To: AddType application/x-httpd-php .php .php3 And you should be dandy again... Nico This looks like it does make a lot of sense. After changing and restarting apache, it

Re: apache php3 question

2003-10-02 Thread Nico Meijer
Hi, [I think you might want to check your MUA's wrapping] This looks like it does make a lot of sense. After changing and restarting apache, it only works partially. Most pages get parsed, but for some reason, my index.php3 gets downloaded when called from the browser. Have you tried blaming

Re: apache php3 question

2003-10-02 Thread Marc Ramirez
On Thu, Oct 02, 2003 at 03:21:09PM +0200, H. Bartel wrote: On 10/02/2003 02:58 PM [EMAIL PROTECTED] (Nico Meijer) wrote: Change: AddType application/x-httpd-php .php To: AddType application/x-httpd-php .php .php3 And you should be dandy again... Nico This looks like