On Sunday 12 December 2004 21:40, Mike Francis wrote:

Please do not top post.

> Hi David,
> Thanks for your help. I've taken out the @ character, and added the
> error-trapping code to my file.
>
> The results:
> When I run the file, nothing untoward is reported, and I end up with a
> blank screen in IE / Moxilla Firebird / Opera. There are no errors
> reported. In the Apache error log, there are no error or movement messages
> reported for this operation.
> In the Apache Access Log the following is reported:

You should be looking in the "PHP error log", the location of which is defined 
in php.ini.

Alternatively put the following at the beginning of all your development code:

    error_reporting(E_ALL);
    ini_set('display_errors', TRUE);

That will display errors as they occur (as well as log them to file if php.ini 
was configured to do so).

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
------------------------------------------
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
------------------------------------------
/*
To one large turkey add one gallon of vermouth and a demijohn of Angostura
bitters.  Shake.
  -- F. Scott Fitzgerald, recipe for turkey cocktail.
*/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to