ini_set ...
am 21.03.2008 15:11:58 von pvanbuskirk
I have the line "ini_set('display_errors', 'on');" in my code, but it is
not working. Does it need to be the first command on the page?
Trish
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
RE: ini_set ...
am 21.03.2008 15:20:12 von pvanbuskirk
------_=_NextPart_001_01C88B5E.ACE6F46D
Content-Type: text/plain;
charset="US-ASCII"
Content-Transfer-Encoding: quoted-printable
I have full access to the php.ini file, which is what I do now to
test... go there, change the file, restart the IIS service, etc. I read
somewhere recently where they used this line in their code, and I
thought how convenient that would be ... just haven't been able to get
it to work. I will try "true" instead of "on" and see if that works.
Does it go back to the default on it's own, or do I need to hard-code
that in the page when I'm done?
=20
Thanks Isaak!
=20
=20
From: Isaak Malik [mailto:isooik@gmail.com]=20
Sent: Friday, March 21, 2008 10:16 AM
To: VanBuskirk, Patricia
Subject: Re: [PHP-DB] ini_set ...
=20
=20
On Fri, Mar 21, 2008 at 3:11 PM, VanBuskirk, Patricia
wrote:
I have the line "ini_set('display_errors', 'on');" in my code, but it is
not working. Does it need to be the first command on the page?
Trish
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
You can call this function anywhere in your file, I'm using:
ini_set('display_errors', 'True');
without a problem.
If you're on a shared hosting environment it's possible that the
adminstrators have disabled this function or feature.
--=20
Isaak Malik
Web Developer
isooik@gmail.com=20
------_=_NextPart_001_01C88B5E.ACE6F46D--
Re: [PHP-DB] ini_set ...
am 21.03.2008 15:52:00 von parasane
On Fri, Mar 21, 2008 at 10:20 AM, VanBuskirk, Patricia
wrote:
>
> I have the line "ini_set('display_errors', 'on');" in my code, but it is
> not working. Does it need to be the first command on the page?
[merge]
> I have full access to the php.ini file, which is what I do now to
> test... go there, change the file, restart the IIS service, etc. I read
> somewhere recently where they used this line in their code, and I
> thought how convenient that would be ... just haven't been able to get
> it to work. I will try "true" instead of "on" and see if that works.
> Does it go back to the default on it's own, or do I need to hard-code
> that in the page when I'm done?
Trish, this is a general question rather than a database question,
so it's being forwarded to the PHP-General list as well. It will not
only get you some more detailed replies, but it helps keep the
archives organized. If you're not already subscribed, please consider
doing so: http://php.net/mailinglists
Try something like this at the head of your code:
error_reporting(E_ALL);
ini_set('display_errors','On');
?>
Keep in mind that it will only be executed in the same script as
it's coded, and only if/when those lines are executed. It won't set
the system-wide (or even same-session) display_errors, it only enables
that option for that script at that time.
--
Forensic Services, Senior Unix Engineer
1+ (570-) 362-0283
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php