php-general Digest 22 Jul 2011 19:06:12 -0000 Issue 7411

2011-07-22 Thread php-general-digest-help
php-general Digest 22 Jul 2011 19:06:12 - Issue 7411 Topics (messages 314148 through 314167): dependency check 314148 by: Andreas Moroder 314150 by: Nilesh Govindarajan 314154 by: Alex Nikitin 314156 by: Nilesh Govindarajan 314158 by: Alex Nikitin

[PHP] dependency check

2011-07-22 Thread Andreas Moroder
Hallo, I have a PHP application made of many files ( php, images etc. ) I have a strong suspicion that many of the files in the application directory are no more in use, because of changes made on the application. Is there a tool that, starting from the entry point of the application, scans

Re: [PHP] Re: PHP frameworks

2011-07-22 Thread Richard Quadling
On 21 July 2011 23:56, Shawn McKenzie nos...@mckenzies.net wrote: On 07/21/2011 03:59 PM, Chris Stinemetz wrote: Hello all, I am thinking about venturing into PHP frameworks, but I would like to get advice on what the correct selection would be for someone that is about intermediate in PHP

Re: [PHP] dependency check

2011-07-22 Thread Nilesh Govindarajan
On 07/22/2011 11:21 AM, Andreas Moroder wrote: Hallo, I have a PHP application made of many files ( php, images etc. ) I have a strong suspicion that many of the files in the application directory are no more in use, because of changes made on the application. Is there a tool that, starting

Re: [PHP] PHP frameworks

2011-07-22 Thread Floyd Resler
On Jul 21, 2011, at 11:41 PM, Micky Hulse wrote: On Thu, Jul 21, 2011 at 6:44 PM, Shawn McKenzie nos...@mckenzies.net wrote: A la CakePHP. Will automagically build controllers and views for the admin of your tables/models if you wish. Oooh, interesting! I will check out CakePHP! Thanks

Re: [PHP] PHP frameworks

2011-07-22 Thread Richard Quadling
On 22 July 2011 13:26, Floyd Resler fres...@adex-intl.com wrote: On Jul 21, 2011, at 11:41 PM, Micky Hulse wrote: On Thu, Jul 21, 2011 at 6:44 PM, Shawn McKenzie nos...@mckenzies.net wrote: A la CakePHP.  Will automagically build controllers and views for the admin of your tables/models if

Re: [PHP] PHP frameworks

2011-07-22 Thread Floyd Resler
On Jul 22, 2011, at 8:33 AM, Richard Quadling wrote: On 22 July 2011 13:26, Floyd Resler fres...@adex-intl.com wrote: On Jul 21, 2011, at 11:41 PM, Micky Hulse wrote: On Thu, Jul 21, 2011 at 6:44 PM, Shawn McKenzie nos...@mckenzies.net wrote: A la CakePHP. Will automagically build

[PHP] SOAP client and SSL version 3

2011-07-22 Thread Pawel Furtak
Hello, I'm trying to enforce ssl version 3 for PHP Soap client. Is it possible somehow ? Pawel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] dependency check

2011-07-22 Thread Nilesh Govindarajan
On 07/22/2011 06:56 PM, Alex Nikitin wrote: Or you could just grep the directory, not saying you have to do this, but this was kind of fun to write anyways, if i spent more time on it, i could perfect it, but i dont have that kind of time, so this will still give you a few doubles, but it

Re: [PHP] dependency check

2011-07-22 Thread Alex Nikitin
On Fri, Jul 22, 2011 at 8:17 AM, Nilesh Govindarajan cont...@nileshgr.comwrote: On 07/22/2011 11:21 AM, Andreas Moroder wrote: Hallo, I have a PHP application made of many files ( php, images etc. ) I have a strong suspicion that many of the files in the application directory are no

[PHP] File concurrent file access

2011-07-22 Thread Florian Lemaitre
Hi ! I'm developing my new website and I'm worried about concurrent file access. In fact, I want to suppress a maximum database interactions so I keep information in files with faster I/O than databases. But I'm worried by the fact that an error can occur when someone try to access a file

Re: [PHP] dependency check

2011-07-22 Thread Alex Nikitin
It would still be quicker with shell tools, imho, granted that some command line elitistry would be required... Also if you are going to be doing string parsing and manipulation, and string parsing here is all that you are doing, there would be no better language than perl to do it with, granted i

Re: [PHP] File concurrent file access

2011-07-22 Thread Jonathan Tapicer
On Fri, Jul 22, 2011 at 10:44 AM, Florian Lemaitre florian.lemai...@evolutioncom.eu wrote: Hi ! I'm developing my new website and I'm worried about concurrent file access. In fact, I want to suppress a maximum database interactions so I keep information in files with faster I/O than

[PHP] Escaping '

2011-07-22 Thread Floyd Resler
I did a fresh install of PHP on a new server. I had gotten used to PHP automatically adding a backslash before single quotes when form data is submitted. It seems that is shut off in my new install. How do I turn it back on? Thanks! Floyd -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Escaping '

2011-07-22 Thread Daniel Brown
On Fri, Jul 22, 2011 at 11:48, Floyd Resler fres...@adex-intl.com wrote: I did a fresh install of PHP on a new server.  I had gotten used to PHP automatically adding a backslash before single quotes when form data is submitted.  It seems that is shut off in my new install.  How do I turn it

[PHP] Re: Escaping '

2011-07-22 Thread Geoff Lane
On Friday, July 22, 2011, Floyd Resler wrote: I did a fresh install of PHP on a new server. I had gotten used to PHP automatically adding a backslash before single quotes when form data is submitted. It seems that is shut off in my new install. How do I turn it back on? Check the manual

Re: [PHP] Escaping '

2011-07-22 Thread Richard Quadling
On 22 July 2011 16:54, Daniel Brown danbr...@php.net wrote: On Fri, Jul 22, 2011 at 11:48, Floyd Resler fres...@adex-intl.com wrote: I did a fresh install of PHP on a new server.  I had gotten used to PHP automatically adding a backslash before single quotes when form data is submitted.  It

Re: [PHP] Re: Escaping '

2011-07-22 Thread Richard Quadling
On 22 July 2011 16:56, Geoff Lane ge...@gjctech.co.uk wrote: On Friday, July 22, 2011, Floyd Resler wrote: I did a fresh install of PHP on a new server.  I had gotten used to PHP automatically adding a backslash before single quotes when form data is submitted.  It seems that is shut off in

Re: [PHP] Escaping '

2011-07-22 Thread Floyd Resler
On Jul 22, 2011, at 11:54 AM, Daniel Brown wrote: On Fri, Jul 22, 2011 at 11:48, Floyd Resler fres...@adex-intl.com wrote: I did a fresh install of PHP on a new server. I had gotten used to PHP automatically adding a backslash before single quotes when form data is submitted. It seems

Re: [PHP] Escaping '

2011-07-22 Thread Floyd Resler
On Jul 22, 2011, at 12:08 PM, Richard Quadling wrote: On 22 July 2011 16:54, Daniel Brown danbr...@php.net wrote: On Fri, Jul 22, 2011 at 11:48, Floyd Resler fres...@adex-intl.com wrote: I did a fresh install of PHP on a new server. I had gotten used to PHP automatically adding a backslash

Re: [PHP] dependency check

2011-07-22 Thread Ashley Sheridan
On Fri, 2011-07-22 at 09:51 -0400, Alex Nikitin wrote: It would still be quicker with shell tools, imho, granted that some command line elitistry would be required... Also if you are going to be doing string parsing and manipulation, and string parsing here is all that you are doing, there

Re: [PHP] dependency check

2011-07-22 Thread Alex Nikitin
On Fri, Jul 22, 2011 at 3:09 PM, Ashley Sheridan a...@ashleysheridan.co.ukwrote: ** On Fri, 2011-07-22 at 09:51 -0400, Alex Nikitin wrote: It would still be quicker with shell tools, imho, granted that some command line elitistry would be required... Also if you are going to be doing string