Re: [PHP] dependency check

2011-07-22 Thread Alex Nikitin
On Fri, Jul 22, 2011 at 3:09 PM, Ashley Sheridan wrote: > ** > 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 manipul

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] 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 wrote: >> On Fri, Jul 22, 2011 at 11:48, 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 fo

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 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

Re: [PHP] Re: Escaping '

2011-07-22 Thread Richard Quadling
On 22 July 2011 16:56, Geoff Lane 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 my new instal

Re: [PHP] Escaping '

2011-07-22 Thread Richard Quadling
On 22 July 2011 16:54, Daniel Brown wrote: > On Fri, Jul 22, 2011 at 11:48, 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 ne

[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 Daniel Brown
On Fri, Jul 22, 2011 at 11:48, 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? Tha

[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/) T

Re: [PHP] File concurrent file access

2011-07-22 Thread Jonathan Tapicer
On Fri, Jul 22, 2011 at 10:44 AM, Florian Lemaitre 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 databases. > But I'm worried by the f

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

[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 being

Re: [PHP] dependency check

2011-07-22 Thread Alex Nikitin
On Fri, Jul 22, 2011 at 8:17 AM, Nilesh Govindarajan wrote: > 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,

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, bu

[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] 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 wrote: >> >> On Jul 21, 2011, at 11:41 PM, Micky Hulse wrote: >> >>> On Thu, Jul 21, 2011 at 6:44 PM, Shawn McKenzie >>> wrote: A la CakePHP. Will automagically build controllers and views for th

Re: [PHP] PHP frameworks

2011-07-22 Thread Richard Quadling
On 22 July 2011 13:26, Floyd Resler wrote: > > On Jul 21, 2011, at 11:41 PM, Micky Hulse wrote: > >> On Thu, Jul 21, 2011 at 6:44 PM, Shawn McKenzie wrote: >>> A la CakePHP.  Will automagically build controllers and views for the >>> admin of your tables/models if you wish. >> >> Oooh, interestin

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 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 for tip! :) >

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, sta

Re: [PHP] Re: PHP frameworks

2011-07-22 Thread Richard Quadling
On 21 July 2011 23:56, Shawn McKenzie 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 knowledge.