[PHP-WIN] Using the power of the PC to find new species in lists

2009-02-11 Thread Bill Mudry
I have spent years now trying to find as many species of plants that are wood and woody. A common practice has been to manually compare the woods listed in one file (usually text (.ascii, doc, comma delimited, etc.) , spreadsheet or database file) that lists the species I already have found (i

Re: [PHP-WIN] Access Violation

2009-02-11 Thread John Mertic
FastCGI will work on XP with the installer designed for Windows Server 2003, although it's not offically supported. John Mertic jmer...@gmail.com Sent from my iPod On Feb 11, 2009, at 8:02 PM, "Louis Solomon [SteelBytes]" > wrote: forget the ISAPI, use FastCGI. In my experience the ISAPI h

Re: [PHP-WIN] Access Violation

2009-02-11 Thread Elizabeth M Smith
Louis Solomon [SteelBytes] wrote: > forget the ISAPI, use FastCGI. In my experience the ISAPI has never > been stable or working fully. > > mmm, not sure FastCGI is available for IIS for XP, so since it's > probably only a dev machine go to just php as cgi. that works fine on > all OSes > > Lou

Re: [PHP-WIN] Access Violation

2009-02-11 Thread Louis Solomon [SteelBytes]
forget the ISAPI, use FastCGI. In my experience the ISAPI has never been stable or working fully. mmm, not sure FastCGI is available for IIS for XP, so since it's probably only a dev machine go to just php as cgi. that works fine on all OSes Louis -

[PHP-WIN] Access Violation

2009-02-11 Thread Herb Munson
I've installed PHP 5.2.6 ISAPI on Windows XP with IIS 5.1. It works - sort of. I get frequent 500 errors (IE) or "Access Violation" errors (firefox). Often, I cannot open phpinfo.php even once after starting the browser. Once I get the error, I can (very rarely) fix the problem by running s

Re: [PHP-WIN] PHP 4.4.9, Windows: php_openssl.dll is loaded, but https wrapper not found.

2009-02-11 Thread contact
I've had similar issues with self-signed certificates and PHP 5.x. The way I got around it was to install the cURL libraries and use code like this: $channel = curl_init(); curl_setopt($channel, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($channel, CURLOPT_URL, $yourHttpsUrlHere); curl_setopt

Re: [PHP-WIN] PHP 4.4.9, Windows: php_openssl.dll is loaded, but https wrapper not found.

2009-02-11 Thread Jason Cipriani
On Wed, Feb 11, 2009 at 7:55 AM, Marco Schuster wrote: > 2009/2/10 Jason Cipriani : >> I've added php_openssl.dll to php.ini. Once I did that, the error changed to: >> >> "Unable to find wrapper 'https' - did you forget to enable it when you >> configured PHP?" >> >> I guess I did forget to config

Re: [PHP-WIN] PHP4 source doesn't build on Windows...?

2009-02-11 Thread Jason Cipriani
On Wed, Feb 11, 2009 at 7:55 AM, Marco Schuster wrote: > 2009/2/11 Jason Cipriani : >> I'm trying to build PHP 4.4.9 from source and it seems that most of >> the network related files #include . >> >> This has never been a Windows header. >> >> Did I get the wrong source or something? I grabbed it

Re: [PHP-WIN] PHP4 source doesn't build on Windows...?

2009-02-11 Thread Marco Schuster
2009/2/11 Jason Cipriani : > I'm trying to build PHP 4.4.9 from source and it seems that most of > the network related files #include . > > This has never been a Windows header. > > Did I get the wrong source or something? I grabbed it from here: That's a pretty ancient php version o_O Has anyone e

Re: [PHP-WIN] PHP 4.4.9, Windows: php_openssl.dll is loaded, but https wrapper not found.

2009-02-11 Thread Marco Schuster
2009/2/10 Jason Cipriani : > I've added php_openssl.dll to php.ini. Once I did that, the error changed to: > > "Unable to find wrapper 'https' - did you forget to enable it when you > configured PHP?" > > I guess I did forget to configure it, but I don't know how. Everything > I have seen so far su