|
Posted by Rik on 03/07/07 17:03
<java@wispa.de> wrote:
> Hey Erwin,
>
> I replaced any include_once with require_once but did not notice any
> change in PHP's behaviour - it still starts, dumps all the source and
> terminates PHP Fatal error: Call to undefined function :-(
>
> I even changed php.ini and set error_reporting =3D E_NOTICE but still
> there is no more information about the failure. The syntax of all php-=
> files is ok and checked with php -l and I am totally stuck with this.
> Any further ideas how to locate the source of this very short error-
> message?
Yes, indeed. It dumps the source you say, and gives a php error message =
=
about not being defined? This leds me to believe there is a reason your =
=
file is not interpreted as PHP, while others are.
Then this snippet:
getConnectionDetails.php
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
<?
Lets me say:
short_open_tag
<http://nl3.php.net/manual/en/ini.core.php>
You're advised to use <?php instead of <?, untill you've changed all you=
r =
files, set short_open_tag to on.
-- =
Rik Wasmus
Posted on Usenet, not any forum you might see this in.
Ask Smart Questions: http://tinyurl.com/anel
[Back to original message]
|