RE: [PHP-WIN] where is php-cgi.exe?

2010-07-22 Thread Venkat Raman Don
You can just use Microsoft Web Platform Installer and it will configure everything for you. Steps listed at http://blogs.iis.net/donraman/archive/2009/10/07/installing-php-on-windows.aspx. Thanks, Don. -Original Message- From: Steve Richter [mailto:stephenrich...@gmail.com] Sent: Thurs

Re: [PHP-WIN] where is php-cgi.exe?

2010-07-22 Thread madavapeddi suman
Hi Steve, You should find it easily in the directory extracted from 5.3.3 Binary of NTS and TS .Only NTS(VC6 and VC9) is much compatible with IIS as windows is based on multi Threaded Architecture .This Link would be really helpful http://www.iis-aid.com/articles/my_word/difference_between_php_

[PHP-WIN] where is php-cgi.exe?

2010-07-22 Thread Steve Richter
I want to run php on windows7 within IIS. This MSFT document http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis-7/ has a step for adding module mapping to IIS for PHP. It says the executable should be "php-cgi.exe". I downloaded and installed the php windows binary (

Re: [PHP-WIN]static call to an instance method in a class definition

2010-07-22 Thread Ferenc Kovacs
Hi. I knew about this "feature" ($this is used from the caller scope if the called method is static), but I didn't checked the manual about this. Now I did it. http://php.net/manual/en/language.oop5.static.php "Because static methods are callable without an instance of the object created, the pse

[PHP-WIN]static call to an instance method in a class definition

2010-07-22 Thread samuel
Hello, Making a mistake I just come to discover ( for myself ) a strange fiture in php, lets see an example : class A{ public $foo = 'bar'; public function write(){ print($this->foo); } } class B{ public $foo = 'gnagnagna'; public function write(){ A::write(); } } $var =