php-general Digest 25 Aug 2013 09:31:34 -0000 Issue 8343

2013-08-25 Thread php-general-digest-help
php-general Digest 25 Aug 2013 09:31:34 - Issue 8343 Topics (messages 321960 through 321964): Re: Alternate list for eclipse ide support? 321960 by: Sebastian Krebs 321961 by: Lester Caine 321962 by: Sebastian Krebs 321963 by: Lester Caine PHP-5.5.2 +opcache

php-general Digest 26 Aug 2013 03:41:12 -0000 Issue 8344

2013-08-25 Thread php-general-digest-help
php-general Digest 26 Aug 2013 03:41:12 - Issue 8344 Topics (messages 321965 through 321965): exec and system do not work 321965 by: Ethan Rosenberg Administrivia: To subscribe to the digest, e-mail: php-general-digest-subscr...@lists.php.net To unsubscribe from the

[PHP] PHP-5.5.2 +opcache segfaults with Piwik

2013-08-25 Thread Grant
I've tried php-5.5.2 and 5.5.3 but both segfault with piwik unless the opcache is disabled. Someone filed a piwik bug but was told it's a php bug: http://dev.piwik.org/trac/ticket/4093 - Grant -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] exec and system do not work

2013-08-25 Thread Ethan Rosenberg
Dear List - I'm lost on this one - This works - $out = system(ls -l ,$retvals); printf(%s, $out); This does - echo exec(ls -l); This does not - if( !file_exists(/var/www/orders.txt)); { $out = system(touch /var/www/orders.txt, $ret); $out2 = system(chmod 766 /var/www/orders.txt,

Re: [PHP] exec and system do not work

2013-08-25 Thread Sorin Badea
*/var/www* is usually under *www* user. It may be a permissions problem. On Mon, Aug 26, 2013 at 6:41 AM, Ethan Rosenberg erosenb...@hygeiabiomedical.com wrote: Dear List - I'm lost on this one - This works - $out = system(ls -l ,$retvals); printf(%s, $out); This does - echo