RE: [PHP] Got a problem I cant figure out

2002-01-28 Thread JSheble
gt;-Original Message- >From: Ben Turner [mailto:[EMAIL PROTECTED]] >Sent: Sunday, January 27, 2002 10:56 PM >To: [EMAIL PROTECTED] >Subject: [PHP] Got a problem I cant figure out > > >Parse error: parse error in /var/www/docs/tacklebox/404handler.php on line >47

RE: [PHP] Got a problem I cant figure out

2002-01-28 Thread Rick Emery
SHOW US YOUR CODE -Original Message- From: Ben Turner [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 27, 2002 10:56 PM To: [EMAIL PROTECTED] Subject: [PHP] Got a problem I cant figure out Parse error: parse error in /var/www/docs/tacklebox/404handler.php on line 47 I am receiving

[PHP] Syntax highlighting through Apache (Re: [PHP] Got a problem I cant figure out)

2002-01-28 Thread bvr
I just thought of this good tip: To show the highlighted php source without constanly renaming your scripts you can add the the following to your httpd.conf : Alias /src /your/document/root ForceType application/x-httpd-php-source Now, for example to show the source of http://l

Re: [PHP] Got a problem I cant figure out

2002-01-28 Thread Miles Thompson
A goog first step is to rename the page with a .phps extension and display it in the browser. The coloring of the text often gives you an idea where PHP got turned off or something critical was commented out. Miles Thompson At 09:55 PM 1/27/2002 -0700, Ben Turner wrote: >Parse error: parse err

Re: [PHP] Got a problem I cant figure out

2002-01-27 Thread Alex Vargas
That error is always a missing } somewhere... :) Alex. - Original Message - From: "Ben Turner" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 28, 2002 5:55 AM Subject: [PHP] Got a problem I cant figure out Parse error: parse error in /

Re: [PHP] Got a problem I cant figure out

2002-01-27 Thread Richard Crawford
Very likely a missing closing brace somewhere in your program. Look for unpaired {'s or ('s or ['s. On Sun, 2002-01-27 at 20:55, Ben Turner wrote: > Parse error: parse error in /var/www/docs/tacklebox/404handler.php on line 47 > > I am receiving this error on my page but the problem is that li

[PHP] Got a problem I cant figure out

2002-01-27 Thread Ben Turner
Parse error: parse error in /var/www/docs/tacklebox/404handler.php on line 47 I am receiving this error on my page but the problem is that line 47 is the ?> and last line of the page. Is their something Im missing here?? Thanks, Ben