ini_set ...

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
pvanbuskirk [ Fr, 21 März 2008 15:11 ] [ ID #1930086 ]

RE: ini_set ...

------_=_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?



Thanks Isaak!





From: Isaak Malik [mailto:isooik [at] gmail.com]
Sent: Friday, March 21, 2008 10:16 AM
To: VanBuskirk, Patricia
Subject: Re: [PHP-DB] ini_set ...





On Fri, Mar 21, 2008 at 3:11 PM, VanBuskirk, Patricia
<pvanbuskirk [at] otc.fsu.edu> 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.
--
Isaak Malik
Web Developer
isooik [at] gmail.com


------_=_NextPart_001_01C88B5E.ACE6F46D--
pvanbuskirk [ Fr, 21 März 2008 15:20 ] [ ID #1930087 ]

Re: [PHP-DB] ini_set ...

On Fri, Mar 21, 2008 at 10:20 AM, VanBuskirk, Patricia
<pvanbuskirk [at] otc.fsu.edu> 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.

--
</Daniel P. Brown>
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
parasane [ Fr, 21 März 2008 15:52 ] [ ID #1930088 ]
PHP » gmane.comp.php.database » ini_set ...

Vorheriges Thema: Re: Subject: ini_set ...
Nächstes Thema: Re: Kesalahan posting: Don Komo