php-general Digest 17 Aug 2010 08:08:44 -0000 Issue 6897

2010-08-17 Thread php-general-digest-help
php-general Digest 17 Aug 2010 08:08:44 - Issue 6897 Topics (messages 307490 through 307491): Re: Including files on NFS mount slow with APC enabled 307490 by: Mark Hunting 307491 by: Mark Hunting Administrivia: To subscribe to the digest, e-mail:

php-general Digest 17 Aug 2010 20:18:06 -0000 Issue 6898

2010-08-17 Thread php-general-digest-help
php-general Digest 17 Aug 2010 20:18:06 - Issue 6898 Topics (messages 307492 through 307506): Re: Including files on NFS mount slow with APC enabled 307492 by: Colin Guthrie 307493 by: Colin Guthrie Imagick::newPseudoImage function 307494 by: NICHOLAS KLINE Re:

Re: [PHP] Including files on NFS mount slow with APC enabled

2010-08-17 Thread Mark Hunting
I now notice that when I replace include_once with include the open() call disappears. That's very nice, but why does include_once need to open the file, even when apc.include_once_override is enabled? Is this a bug? On 08/16/2010 03:21 PM, Mark Hunting wrote: I am struggling with the

[PHP] Re: Including files on NFS mount slow with APC enabled

2010-08-17 Thread Colin Guthrie
'Twas brillig, and Mark Hunting at 17/08/10 09:08 did gyre and gimble: I now notice that when I replace include_once with include the open() call disappears. That's very nice, but why does include_once need to open the file, even when apc.include_once_override is enabled? Is this a bug? I

[PHP] Imagick::newPseudoImage function

2010-08-17 Thread NICHOLAS KLINE
Anyone out there using the Imagick::newPseudoImage function to create radial gradient images? The documentation at http://us.php.net/manual/en/function.imagick-newpseudoimage.php is lacking. When I try using Imagick::newPseudoImage to create a radial gradient, this error appears in the Apache

Re: [PHP] It's Friday (a MySQL Question) [Solution]

2010-08-17 Thread tedd
At 5:48 PM -0400 8/13/10, tedd wrote: Normally if I want to dump a MySQL database, I read the database via a PHP script (i.e., list tables and fetch rows) and save the results as a text file -- after which I download the file -- it's not a big deal. However while I was doing my daily read of

[PHP] mysqldump

2010-08-17 Thread tedd
Hi gang: At 6:11 PM -0400 8/13/10, Daniel P. Brown wrote: Easiest method, from the command line on the server from which you want to dump the database: mysqldump -u user -p database_name outfile.sql That might be the easiest, but all I get is an empty file. I've tried many

Re: [PHP] mysqldump

2010-08-17 Thread Robert Cummings
On 10-08-17 02:08 PM, tedd wrote: Hi gang: At 6:11 PM -0400 8/13/10, Daniel P. Brown wrote: Easiest method, from the command line on the server from which you want to dump the database: mysqldump -u user -p database_name outfile.sql Command is wrong... should be:

Re: [PHP] mysqldump

2010-08-17 Thread tedd
At 2:17 PM -0400 8/17/10, Robert Cummings wrote: On 10-08-17 02:08 PM, tedd wrote: Hi gang: At 6:11 PM -0400 8/13/10, Daniel P. Brown wrote: Easiest method, from the command line on the server from which you want to dump the database: mysqldump -u user -p database_name

Re: [PHP] mysqldump

2010-08-17 Thread Mari Masuda
On Aug 17, 2010, at 11:40 AM, tedd wrote: At 2:17 PM -0400 8/17/10, Robert Cummings wrote: On 10-08-17 02:08 PM, tedd wrote: Hi gang: At 6:11 PM -0400 8/13/10, Daniel P. Brown wrote: Easiest method, from the command line on the server from which you want to dump the database:

Re: [PHP] mysqldump

2010-08-17 Thread Robert Cummings
On 10-08-17 02:45 PM, Mari Masuda wrote: On Aug 17, 2010, at 11:40 AM, tedd wrote: At 2:17 PM -0400 8/17/10, Robert Cummings wrote: On 10-08-17 02:08 PM, tedd wrote: Hi gang: At 6:11 PM -0400 8/13/10, Daniel P. Brown wrote: Easiest method, from the command line on the server from

Re: [PHP] mysqldump

2010-08-17 Thread David Hutto
On Tue, Aug 17, 2010 at 2:55 PM, Robert Cummings rob...@interjinn.com wrote: On 10-08-17 02:45 PM, Mari Masuda wrote: On Aug 17, 2010, at 11:40 AM, tedd wrote: At 2:17 PM -0400 8/17/10, Robert Cummings wrote: On 10-08-17 02:08 PM, tedd wrote: Hi gang: At 6:11 PM -0400 8/13/10, Daniel P.

Re: [PHP] mysqldump

2010-08-17 Thread David Hutto
On Tue, Aug 17, 2010 at 3:00 PM, David Hutto smokefl...@gmail.com wrote: On Tue, Aug 17, 2010 at 2:55 PM, Robert Cummings rob...@interjinn.com wrote: On 10-08-17 02:45 PM, Mari Masuda wrote: On Aug 17, 2010, at 11:40 AM, tedd wrote: At 2:17 PM -0400 8/17/10, Robert Cummings wrote: On

Re: [PHP] mysqldump

2010-08-17 Thread Robert Cummings
On 10-08-17 03:00 PM, David Hutto wrote: On Tue, Aug 17, 2010 at 2:55 PM, Robert Cummingsrob...@interjinn.com wrote: On 10-08-17 02:45 PM, Mari Masuda wrote: On Aug 17, 2010, at 11:40 AM, tedd wrote: At 2:17 PM -0400 8/17/10, Robert Cummings wrote: On 10-08-17 02:08 PM, tedd wrote: Hi

Re: [PHP] mysqldump

2010-08-17 Thread David Hutto
On Tue, Aug 17, 2010 at 3:04 PM, Robert Cummings rob...@interjinn.com wrote: On 10-08-17 03:00 PM, David Hutto wrote: On Tue, Aug 17, 2010 at 2:55 PM, Robert Cummingsrob...@interjinn.com  wrote: On 10-08-17 02:45 PM, Mari Masuda wrote: On Aug 17, 2010, at 11:40 AM, tedd wrote: At 2:17 PM

Re: [PHP] mysqldump

2010-08-17 Thread tedd
At 11:45 AM -0700 8/17/10, Mari Masuda wrote: Actually, mysqldump -u user -p password database_name outfile.sql is also the incorrect command. When providing the password in the command, there should not be a space between the -p and the actual password. Try mysqldump -u

[PHP] How safe is a .htaccess file?

2010-08-17 Thread tedd
Hi gang: The subject line says it all. How secure is a .htaccess file to store passwords and other sensitive stuff? Can a .htaccess file be viewed remotely? Cheers, tedd -- --- http://sperling.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] How safe is a .htaccess file?

2010-08-17 Thread Robert Cummings
On 10-08-17 04:17 PM, tedd wrote: Hi gang: The subject line says it all. How secure is a .htaccess file to store passwords and other sensitive stuff? Can a .htaccess file be viewed remotely? It depends on the server configuration. I think for the most part apache servers disable viewing

Re: [PHP] How safe is a .htaccess file?

2010-08-17 Thread Peter Lind
On 17 August 2010 22:17, tedd t...@sperling.com wrote: Hi gang: The subject line says it all. How secure is a .htaccess file to store passwords and other sensitive stuff? Can a .htaccess file be viewed remotely? No, Apache won't serve it. Regards Peter -- hype WWW: http://plphp.dk /

Re: [PHP] How safe is a .htaccess file?

2010-08-17 Thread Robert Cummings
On 10-08-17 04:23 PM, Peter Lind wrote: On 17 August 2010 22:17, teddt...@sperling.com wrote: Hi gang: The subject line says it all. How secure is a .htaccess file to store passwords and other sensitive stuff? Can a .htaccess file be viewed remotely? No, Apache won't serve it. It's a

Re: [PHP] How safe is a .htaccess file?

2010-08-17 Thread Peter Lind
On 17 August 2010 22:35, Robert Cummings rob...@interjinn.com wrote: On 10-08-17 04:23 PM, Peter Lind wrote: On 17 August 2010 22:17, teddt...@sperling.com  wrote: Hi gang: The subject line says it all. How secure is a .htaccess file to store passwords and other sensitive stuff? Can

Re: [PHP] How safe is a .htaccess file?

2010-08-17 Thread Robert Cummings
On 10-08-17 04:39 PM, Peter Lind wrote: On 17 August 2010 22:35, Robert Cummingsrob...@interjinn.com wrote: On 10-08-17 04:23 PM, Peter Lind wrote: On 17 August 2010 22:17, teddt...@sperling.comwrote: Hi gang: The subject line says it all. How secure is a .htaccess file to store

Re: [PHP] How safe is a .htaccess file?

2010-08-17 Thread tedd
At 4:23 PM -0400 8/17/10, Robert Cummings wrote: On 10-08-17 04:17 PM, tedd wrote: Hi gang: The subject line says it all. How secure is a .htaccess file to store passwords and other sensitive stuff? Can a .htaccess file be viewed remotely? It depends on the server configuration. I think

Re: [PHP] mysqldump

2010-08-17 Thread Jason Pruim
On Aug 17, 2010, at 3:19 PM, tedd t...@sperling.com wrote: At 11:45 AM -0700 8/17/10, Mari Masuda wrote: Actually, mysqldump -u user -p password database_name outfile.sql is also the incorrect command. When providing the password in the command, there should not be a space

Re: [PHP] How safe is a .htaccess file?

2010-08-17 Thread Peter Lind
On 18 August 2010 01:41, tedd t...@sperling.com wrote: At 4:23 PM -0400 8/17/10, Robert Cummings wrote: On 10-08-17 04:17 PM, tedd wrote: Hi gang: The subject line says it all. How secure is a .htaccess file to store passwords and other sensitive stuff? Can a .htaccess file be viewed