Re: [PHP] php.ini setting

2011-10-02 Thread Jim Giner
Spoke to quickly - still having issues. While the .ini file in each of my appl. folders has magic quotes set to Off, my scripts are still escaping my input - obviously following the server's .ini file settings. Waiting for my hosters to get back to me. -- PHP General Mailing List (http://

Re: [PHP] php.ini setting

2011-10-02 Thread Ashley Sheridan
On Sat, 2011-10-01 at 14:01 -0400, Mike Mackintosh wrote: > On Oct 1, 2011, at 2:04 PM, Ashley Sheridan wrote: > > > On Sat, 2011-10-01 at 12:55 -0400, Stephen wrote: > > > >> On 11-10-01 11:57 AM, Jim Giner wrote: > >>> I'm trying to set magic quotes Off as my reading tells me that it's not >

Re: [PHP] php.ini setting

2011-10-01 Thread Jim Giner
Solved. Had to have my host provider put a copy of php.ini in my public_html and then I made the magic quotes setting change. Interesting - running a phpinfo command still shows the setting as On becuase it returns the server's settigns, NOT my individual folder setting. -- PHP General Mail

Re: [PHP] php.ini setting

2011-10-01 Thread Jim Giner
"Mike Mackintosh" wrote in message news:52ea6b9e-ef12-44d3-bd31-72984e5e5...@angrystatic.com... http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php.ini setting

2011-10-01 Thread Mike Mackintosh
On Oct 1, 2011, at 2:04 PM, Ashley Sheridan wrote: > On Sat, 2011-10-01 at 12:55 -0400, Stephen wrote: > >> On 11-10-01 11:57 AM, Jim Giner wrote: >>> I'm trying to set magic quotes Off as my reading tells me that it's not good >>> to have it defaulted to On. >>> >>> >> http://php.net/manual/e

Re: [PHP] php.ini setting

2011-10-01 Thread Ashley Sheridan
On Sat, 2011-10-01 at 12:55 -0400, Stephen wrote: > On 11-10-01 11:57 AM, Jim Giner wrote: > > I'm trying to set magic quotes Off as my reading tells me that it's not good > > to have it defaulted to On. > > > > > http://php.net/manual/en/security.magicquotes.disabling.php > > Stephen > Stephe

Re: [PHP] php.ini setting

2011-10-01 Thread Jim Giner
"Stephen" wrote in message news:4e874606.2030...@rogers.com... >> > http://php.net/manual/en/security.magicquotes.disabling.php > > Stephen That tells me nothing new. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php.ini setting

2011-10-01 Thread Stephen
On 11-10-01 11:57 AM, Jim Giner wrote: I'm trying to set magic quotes Off as my reading tells me that it's not good to have it defaulted to On. http://php.net/manual/en/security.magicquotes.disabling.php Stephen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://

[PHP] php.ini setting

2011-10-01 Thread Jim Giner
I'm trying to set magic quotes Off as my reading tells me that it's not good to have it defaulted to On. My ISP has this setting (from PHPINFO call): magic_quotes_gpc on >From reading the php.net manual I found this line php_flag magic_quotes_gpc on which it says to place in the .htac