Thanks for the reply , Dimitar. Here are my results:


> If it is runtime error you may include at the beginning of php script
> command to turn on error reporting and display errors like this:
> ini_set("display_errors", 1);
> error_reporting(E_ALL);
>

This didn't do anything on mozdev.


> Another combined scenario if you don't have php locally is to create new
> sample test script which turn on error reporting and include sript with
> problem.
> Something like this. Create new php file my-test.php with the following
> content:
> <?php
> ini_set("display_errors", 1);
> error_reporting(E_ALL);
> include("my-php-file.php");
>

This worked; i.e., it shows the parse error and line number. I wonder why it
works with an include but not otherwise?

Eric
_______________________________________________
Project_owners mailing list
[email protected]
https://www.mozdev.org/mailman/listinfo/project_owners

Reply via email to