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 segfaults with Piwik
321964 by: Grant

Administrivia:

To subscribe to the digest, e-mail:
php-general-digest-subscr...@lists.php.net

To unsubscribe from the digest, e-mail:
php-general-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
php-gene...@lists.php.net


--
---BeginMessage---
2013/8/24 Lester Caine les...@lsces.co.uk

 With composer being pushed as the 'in way to go' and not being able to see
 how to get some code relating to bootstrap and smarty development because
 the links only show composer I've downloaded a plug-in for eclipse that is
 supposed to handle that. But it's not working as I expect, and while
 heading over to the plug-ins developers is the obvious step, what I'd
 actually prefer is a more general PHP/Eclipse list to discuss general IDE
 problems rather than even PDT biased discussions.

 Is there a suitable list? And if not is there any interest in setting one
 up? ... at the risk of proliferating even more lists ...


Hi,

I for myself switched over to PhpStorm from Eclipse/PDT and I fear meany
hear use either PhpStorm, or Netbeans in the meantime. I'm not saying, that
nobody is using Eclipse/PDT anymore, but I fear you wont find much interest
here.

Regards,
Sebastian



 --
 Lester Caine - G8HFL
 -
 Contact - 
 http://lsces.co.uk/wiki/?page=**contacthttp://lsces.co.uk/wiki/?page=contact
 L.S.Caine Electronic Services - http://lsces.co.uk
 EnquirySolve - http://enquirysolve.com/
 Model Engineers Digital Workshop - http://medw.co.uk
 Rainbow Digital Media - 
 http://rainbowdigitalmedia.co.**ukhttp://rainbowdigitalmedia.co.uk

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
github.com/KingCrunch
---End Message---
---BeginMessage---

Sebastian Krebs wrote:

With composer being pushed as the 'in way to go' and not being able to see
how to get some code relating to bootstrap and smarty development because
the links only show composer I've downloaded a plug-in for eclipse that is
supposed to handle that. But it's not working as I expect, and while
heading over to the plug-ins developers is the obvious step, what I'd
actually prefer is a more general PHP/Eclipse list to discuss general IDE
problems rather than even PDT biased discussions.

Is there a suitable list? And if not is there any interest in setting one
up? ... at the risk of proliferating even more lists ...


I for myself switched over to PhpStorm from Eclipse/PDT and I fear meany
hear use either PhpStorm, or Netbeans in the meantime. I'm not saying, that
nobody is using Eclipse/PDT anymore, but I fear you wont find much interest
here.


I'm still on PHPEclipse for PHP. PDT just does not work for me, and neither did 
Netbeans for some of the other languages I have to live with, which is why 
PHPStorm is no use either. I need python in addition to C/C++ with document 
handling, and firebird which don't get any support from either so Eclipse is 
really my only option.


--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk
Rainbow Digital Media - http://rainbowdigitalmedia.co.uk
---End Message---
---BeginMessage---
2013/8/24 Lester Caine les...@lsces.co.uk

 Sebastian Krebs wrote:

 With composer being pushed as the 'in way to go' and not being able to see
 how to get some code relating to bootstrap and smarty development
 because
 the links only show composer I've downloaded a plug-in for eclipse that
 is
 supposed to handle that. But it's not working as I expect, and while
 heading over to the plug-ins developers is the obvious step, what I'd
 actually prefer is a more general PHP/Eclipse list to discuss general
 IDE
 problems rather than even PDT biased discussions.
 
 Is there a suitable list? And if not is there any interest in setting
 one
 up? ... at the risk of proliferating even more lists ...


 I for myself switched over to PhpStorm from Eclipse/PDT and I fear meany
 hear use either PhpStorm, or Netbeans in the meantime. I'm not saying,
 that
 nobody is using Eclipse/PDT anymore, but I fear you wont find much
 interest
 here.


 I'm still on PHPEclipse for PHP. PDT just does not work for me, and
 neither did Netbeans for some of the other languages I have to live with,
 which is why PHPStorm is no use either.


PHPEclipse is still in development? O_o The last time I noticed it, it
looked abandoned. However, if it works for you, 

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 digest, e-mail:
php-general-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
php-gene...@lists.php.net


--
---BeginMessage---

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, $ret);
   echo 'file2br /';
   echo file_exists(/var/www/orders.txt);
}

and this does not -

if( !file_exists(/var/www/orders.txt));
{
   exec(touch /var/www/orders.txt);
   exec(chmod 766 /var/www/orders.txt);
   echo 'file2br /';
   echo file_exists(/var/www/orders.txt);
}

Ethan
---End Message---