Re: [PHP] PHP and Powershell

2013-07-19 Thread Serge Fonville
Hi, Although this is more powershell related than PHP... When Powershell returns an object, you can pipe the output through Select-Object to get only certain object properties. To better answer your question: First, why do you specify ComputerName as 127.0.0.1 if the credential is already specif

[PHP] PHP 5.5.1 is now available

2013-07-19 Thread Julien Pauli
Hello, The PHP Development team would like to inform you the immediate availability of PHP 5.5.1. All users are encouraged to upgrade their version. This release includes bug fixes as well as a security fix (Bug #65236). For changes in PHP 5.5.1, please consult the PHP 5 ChangeLog. Release Annou

[PHP] Re: zend framework & getIdentity

2013-07-19 Thread Dan Joseph
On Wed, Jul 17, 2013 at 5:54 PM, Dan Joseph wrote: > Fatal error: Uncaught exception 'Zend_Session_Exception' with message > 'Zend_Session::start() - > /product/Messenger-dev/Messenger/library/Zend/Session.php(Line:480): Error > #2 Class __PHP_Incomplete_Class has no unserializer Array' in > /pro

RE: [PHP] PHP and Powershell

2013-07-19 Thread Alan Loos
Thank you for your response Serge! The computer name is for the invoke-command, ComputerName has to be specified to tell the computer where the command is to be routed. Since I want this to run locally over PHP I figured that it would be a good way to avoid running a script as I have read onl

[PHP] Stripe Connect in the UK + PHP Integration.

2013-07-19 Thread Richard Quadling
Hi. Simple question. Has anyone got Stripe Connect, Stripe.js and Stripe PHP SDK operational in the UK. I'm struggling getting the UK Beta to accept a new account/customer set for a UK business or individual, accepting GBP. And I'm in the UK Beta! Any help would be appreciated. Off list if pre

Re: [PHP] PHP and Powershell

2013-07-19 Thread Serge Fonville
How have you determined that invoke-command requires -computername? Kind regards/met vriendelijke groet, Serge Fonville http://www.sergefonville.nl Convince Microsoft! They need to add TRUNCATE PARTITION in SQL Server https://connect.microsoft.com/SQLServer/feedback/details/417926/truncate-part

RE: [PHP] PHP and Powershell

2013-07-19 Thread Alan Loos
According to Technet it is not required (http://technet.microsoft.com/en-us/library/hh849719.aspx) as the default would be 'localhost' which is the same as 127.0.0.1. So you are correct it is not required. However when I take away '-computername 127.0.0.1' I get a return of: Array ( [0] =>

Re: [PHP] PHP and Powershell

2013-07-19 Thread Serge Fonville
Thank you for your clarification. Have you considered placing the whole powershell -command parameter in a .ps1 script and executing that instead? The benefit would be that it is easier to read and test accordingly. HTH Kind regards/met vriendelijke groet, Serge Fonville http://www.sergefonvi

Re: [PHP] PHP and Powershell

2013-07-19 Thread Tedd Sperling
To all: Sorry for top posting and sorry for sounding like the list-police, but you need to trim the excess from your post. Hitting reply without considering that other have to read through a bunch of old add-on email is not good. So, please just trim your post to what is important. Cheers, te

RE: [PHP] PHP and Powershell

2013-07-19 Thread Alan Loos
Serge, I have, the script itself allows for easy transition into a .ps1, what I have done is removed the # from the debug section to get the full command that is then easily 'copy and paste'-able into a Powershell prompt and I get the same response in Powershell directly. Also in response to