php-windows Digest 25 Apr 2005 10:58:02 -0000 Issue 2646
Topics (messages 25911 through 25913):
Re: Custom 404 Error Messages in PHP
25911 by: Maxwell Brodie
25912 by: Huebel, Jens
Debug Tracing
25913 by: Gene.Brumm.thomson.com
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[email protected]
----------------------------------------------------------------------
--- Begin Message ---
It still doesn't work, I have made every error message there can possible be
go to my error file, and it still comes up with "no input file specified"
"Mike" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>> This is my first post to ANY newsgroup ever, so forgive me if
>> I do anything wrong. I have a delemia, I would like to use a
>> custom 404 error on my website to make it look more user
>> friendly than "No input file specified"
>> when the file on the server is not found or a link is broken.
>> I am fairly new to PHP, so I am pretty hopeless. I am running
>> a Win 2K3 server with PHP 4.xxx (can't remember the last
>> digits) and My SQL all installed and functioning properly.
>> Please help!
>>
>
> This actually has nothing to do with PHP but everything to do with your
> webserver.
>
> If you're running IIS, you can go to the properties of the website in
> question and change it in there.
>
> -M
--- End Message ---
--- Begin Message ---
Did you check the box "Verify that file exists" on the dialog where you set
up the entries to parse a php file with php (website properties /
application configuration / application extensions)?
It has to be enabled!
-----Urspr�ngliche Nachricht-----
Von: Maxwell Brodie [mailto:[EMAIL PROTECTED]
Gesendet: Sonntag, 24. April 2005 23:02
An: [email protected]
Betreff: [SPAMVERDACHT] - Re: [PHP-WIN] Custom 404 Error Messages in PHP -
Found word(s) list error XXX in the Text body
It still doesn't work, I have made every error message there can possible be
go to my error file, and it still comes up with "no input file specified"
"Mike" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>> This is my first post to ANY newsgroup ever, so forgive me if
>> I do anything wrong. I have a delemia, I would like to use a
>> custom 404 error on my website to make it look more user
>> friendly than "No input file specified"
>> when the file on the server is not found or a link is broken.
>> I am fairly new to PHP, so I am pretty hopeless. I am running
>> a Win 2K3 server with PHP 4.xxx (can't remember the last
>> digits) and My SQL all installed and functioning properly.
>> Please help!
>>
>
> This actually has nothing to do with PHP but everything to do with your
> webserver.
>
> If you're running IIS, you can go to the properties of the website in
> question and change it in there.
>
> -M
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
I am using Windows version 5.0.3 of PHP running on an XP workstation. I
can't get the pg_trace
function to work properly. Here is a code snip:
$res = pg_trace("C:/PostgreSQLDevHndbk/tmp/trace-log.log", w, $conn);
$sql = "SELECT * FROM customer";
$result = pg_exec($conn, $sql);
$rows = pg_numrows($result);
for ($i = 0; $i < $rows; $i++)
{
$myarray = pg_fetch_row($result, $i);
echo ("Array: $myarray[2] - $myarray[3]<br>\n");
}
$res = pg_untrace($conn);
The trace-log.log file is generated but is empty. What am I doing wrong?
--- End Message ---