Re: [PHP-DB] ini_set ...

2008-03-21 Thread Daniel Brown
On Fri, Mar 21, 2008 at 10:20 AM, VanBuskirk, Patricia <[EMAIL PROTECTED]> 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 no

RE: [PHP-DB] ini_set ...

2008-03-21 Thread VanBuskirk, Patricia
Buskirk, Patricia Subject: Re: [PHP-DB] ini_set ... On Fri, Mar 21, 2008 at 3:11 PM, VanBuskirk, Patricia <[EMAIL PROTECTED]> 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 comman

[PHP-DB] ini_set ...

2008-03-21 Thread VanBuskirk, Patricia
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: [PHP-DB] ini_set / $_SESSION[''] file directory

2005-10-31 Thread Bastien Koert
yes From: Ron Piggott <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: PHP DB Subject: [PHP-DB] ini_set / $_SESSION[''] file directory Date: Sun, 30 Oct 2005 01:58:42 -0500 Is there a way that I may specify the directory (perhaps with the ini_set command) where the $_SESSI

[PHP-DB] ini_set / $_SESSION[''] file directory

2005-10-29 Thread Ron Piggott
Is there a way that I may specify the directory (perhaps with the ini_set command) where the $_SESSION[''] files are stored on the server? For example I want to place them in /home/my_directory is session.cookie_path the variable this directory is specified in? (I read that you need to specif

[PHP-DB] ini_set()

2005-06-06 Thread veditio
In order to create a session handling function that does not rely at all on cookies, I'm trying to use ini_set('session.use_cookies', '0') to make sure that the PHP server does not set cookies on page load. However, even though the ini_set goes through (as evidenced by the "0" in the ini_get())