On 14 feb. 2013, at 20:32, Marco Behnke wrote:
> Am 14.02.13 16:05, schrieb Camilo Sperberg:
>>
>> You can also write a little script that clears the APC cache, something in
>> the line of:
>>
>> #!/usr/bin/php
>> > apc_clear_cache();
>>
>> And execute this script each time you deploy. (can
On Thu, Feb 14, 2013 at 4:56 PM, Andy McKenzie wrote:
>
> Can I just mention, as so many others have, how much I hate the fact
> that this list is configured to not reply to the list by default?
I know. Actually, the only reason it's like this is because a lot
of people will take the convers
On Thu, Feb 14, 2013 at 2:52 PM, Daniel Brown wrote:
> Remember to hit reply-all, Andy, so it goes to the list as well as
> the previous author.
>
> On Thu, Feb 14, 2013 at 2:49 PM, Andy McKenzie wrote:
>> On Thu, Feb 14, 2013 at 2:29 PM, Daniel Brown wrote:
>>> On Thu, Feb 14, 2013 at 2:20
On 14 Feb 2013, at 20:57, Al wrote:
> On 2/14/2013 1:54 PM, Stuart Dallas wrote:
>> Sorry for the top post!
>>
>> I don't know numbers, but my gut instinct is that the cycles wasted raising
>> the notice (it gets raised even if it goes nowhere so turning display and
>> log doesn't remove the hi
On 2/14/2013 1:54 PM, Stuart Dallas wrote:
Sorry for the top post!
I don't know numbers, but my gut instinct is that the cycles wasted raising the
notice (it gets raised even if it goes nowhere so turning display and log
doesn't remove the hit completely) are better spent executing defensive
On Thu, Feb 14, 2013 at 3:05 PM, John Iliffe wrote:
> type php --version
>
> There are two - preceding the word version.
Apparently, the version of PHP installed on 12.04 accepts
"-version". The version of PHP installed on 12.10 does not, and bombs
without giving a proper error message.
Go
On Thursday 14 February 2013 14:20:06 Chris Bergstresser wrote:
> Hi all --
>
>I've got a cloud server on Rackspace. If I bring up a fresh Ubuntu
> 12.10 machine image, and type "apt-get install php5" it seems to
> install fine. But if I then type "php -version" I get "PHP Parse
> error: sy
Remember to hit reply-all, Andy, so it goes to the list as well as
the previous author.
On Thu, Feb 14, 2013 at 2:49 PM, Andy McKenzie wrote:
> On Thu, Feb 14, 2013 at 2:29 PM, Daniel Brown wrote:
>> On Thu, Feb 14, 2013 at 2:20 PM, Chris Bergstresser
>> wrote:
>>> Hi all --
>>>
>>>I'v
On Thu, Feb 14, 2013 at 1:24 PM, Haluk Karamete wrote:
> I recommend a third option, that is PDO.
>
> Start here please. http://net.tutsplus.com/?s=pdo
>
> On Thu, Feb 14, 2013 at 9:49 AM, dealTek wrote:
>> Hi everybody,
>>
>> Newbie is trying to set up OOP With PHP and MySQL or MySQLi database c
Am 14.02.13 16:05, schrieb Camilo Sperberg:
>
> You can also write a little script that clears the APC cache, something in
> the line of:
>
> #!/usr/bin/php
> apc_clear_cache();
>
> And execute this script each time you deploy. (can also be a command such as
> php -r "apc_clear_cache();"). This
On Thu, Feb 14, 2013 at 2:20 PM, Chris Bergstresser wrote:
> Hi all --
>
>I've got a cloud server on Rackspace. If I bring up a fresh Ubuntu
> 12.10 machine image, and type "apt-get install php5" it seems to
> install fine. But if I then type "php -version" I get "PHP Parse
> error: syntax
Hi all --
I've got a cloud server on Rackspace. If I bring up a fresh Ubuntu
12.10 machine image, and type "apt-get install php5" it seems to
install fine. But if I then type "php -version" I get "PHP Parse
error: syntax error, unexpected end of file in Command line code on
line 1".
What
Sorry for the top post!
I don't know numbers, but my gut instinct is that the cycles wasted raising the
notice (it gets raised even if it goes nowhere so turning display and log
doesn't remove the hit completely) are better spent executing defensive code.
There is no reason, ever, that producti
Also worth checking http://justinvincent.com/ezsql
Which is the class behind the WordPress' wpdb class.
This is a great read too ->
http://www.devarticles.com/c/a/MySQL/PHP-and-Databases-for-the-Lazy-Sod/
On Thu, Feb 14, 2013 at 10:30 AM, dealTek wrote:
>
>
> On Feb 14, 2013, at 9:49 AM, dealTek
On Feb 14, 2013, at 9:49 AM, dealTek wrote:
> Hi everybody,
>
> Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class
> (using CRUD)
>
> Simple story: creating this class database by myself is way over my head. So
> it be best for me to find something on the Internet th
Matijn Woudt in php.general (Thu, 14 Feb 2013 19:12:55 +0100):
>On Thu, Feb 14, 2013 at 7:04 PM, Roman Gelfand wrote:
>
>> Is there a performance hit when a variable is undefined? or, perhaps,
>> aside from the obvious uncontrolled conditions, are there other
>> impacts?
>
>There might be a little
I recommend a third option, that is PDO.
Start here please. http://net.tutsplus.com/?s=pdo
On Thu, Feb 14, 2013 at 9:49 AM, dealTek wrote:
> Hi everybody,
>
> Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class
> (using CRUD)
>
> Simple story: creating this class database
Am 24.01.2013 18:08, schrieb Kevin Kinsey:
On Thu, Jan 24, 2013 at 05:55:35PM +0100, steff...@gmx.de wrote:
Hi list,
I am having trouble with error messages saying
"Using an empty Initialization Vector (iv) is potentially insecure and not
recommended"
These messages turn up using horde which
On Thu, Feb 14, 2013 at 7:04 PM, Roman Gelfand wrote:
> Is there a performance hit when a variable is undefined? or, perhaps,
> aside from the obvious uncontrolled conditions, are there other
> impacts?
>
> Thanks in advance
There might be a little performance hit because the error is getting l
Roman Gelfand wrote:
>Is there a performance hit when a variable is undefined? or, perhaps,
>aside from the obvious uncontrolled conditions, are there other
>impacts?
>
>Thanks in advance
Aside from all the warnings and potential logic bombs?
You will have a negligible performance hit with al
Hi everybody,
Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class
(using CRUD)
Simple story: creating this class database by myself is way over my head. So it
be best for me to find something on the Internet that has already been created
and working to pro specs (using C
On 14 feb. 2013, at 15:19, "ma...@behnke.biz" wrote:
>> Aaron Holmes hat am 14. Februar 2013 um 03:53
>> geschrieben:
>> Hello,
>> I'm trying to find some information on APC opcode cache behavior.
>> We noticed an issue where, when switching symlinks to different versions
>> of sites, old code
> Aaron Holmes hat am 14. Februar 2013 um 03:53
> geschrieben:
> Hello,
> I'm trying to find some information on APC opcode cache behavior.
> We noticed an issue where, when switching symlinks to different versions
> of sites, old code was running from the previous version after switching
> the sy
23 matches
Mail list logo