RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-25 Thread Jay Blanchard
[snip] This before or after you switched to Apache?... [/snip] Before...the switch to Apache solved many, many problems. [snip - for informational purposes] Can you surf to a static page? Can you surf to a static page in the same directory as the PHP page? PHP CGI or Service/Module? Anything

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-24 Thread Jay Blanchard
[snip] Also, lots of other good info on this topic at: http://www.php.net/manual/en/install.windows.php [/snip] ACCCK I have tried several things, now I am at my wits end. I finally rebooted the server (as suggested by someone one the PHP Windows list) and now

RE: [PHP] Ugh, w32 anything is making me want to drink! - SOLVED

2005-10-24 Thread Jay Blanchard
[snip] ..a lot of good suggestions and some comedy materials... [/snip] Installed Apache, took 15 minutes including PHP configuration. All of the extensions loaded. whew. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-24 Thread Richard Lynch
On Mon, October 24, 2005 11:06 am, Jay Blanchard wrote: [snip] Also, lots of other good info on this topic at: http://www.php.net/manual/en/install.windows.php [/snip] ACCCK I have tried several things, now I am at my wits end. I finally rebooted the

Re: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-23 Thread Rick Emery
Jasper Bryant-Greene wrote: On Fri, 2005-10-21 at 15:43 -0500, Jay Blanchard wrote: [snip] I haven't used Windows for a while, but Start-Search-Files folders (or something like that) and enter php.ini. Delete all results except the one that you've been editing, and then move the one you've

Re: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-22 Thread Jochem Maas
John Nichel wrote: Jay Blanchard wrote: [snip] I just noticed that extension_dir in phpinfo is c:\php4 THAT AIN'T RIGHT! Why is PHP not loading the proper ini file? This is probably the source of my problems all along! ACK! This is what happens when you go over to the dark side.

Re: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-22 Thread Eric Butera
On 10/22/05, Jochem Maas [EMAIL PROTECTED] wrote: John Nichel wrote: Jay Blanchard wrote: [snip] I just noticed that extension_dir in phpinfo is c:\php4 THAT AIN'T RIGHT! Why is PHP not loading the proper ini file? This is probably the source of my problems all along! ACK!

Re: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-22 Thread Richard Lynch
On Sat, October 22, 2005 7:14 pm, Eric Butera wrote: On 10/22/05, Jochem Maas [EMAIL PROTECTED] wrote: John Nichel wrote: Jay Blanchard wrote: [snip] I just noticed that extension_dir in phpinfo is c:\php4 THAT AIN'T RIGHT! Why is PHP not loading the proper ini file? This is

Re[2]: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-22 Thread Leif Gregory
Hello Richard, Saturday, October 22, 2005, 6:37:14 PM, you wrote: Otherwise, it's compiled into the DLL and you are stuck. A Windoze shortcut WILL NOT WORK One of the easiest ways to ensure you're using the php.ini file you want is to create the following registry key:

[PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Jay Blanchard
IIS5 on W2K PHP 4.4.n php_curl.dll is not commented. libeay32.dll AND ssleay32.dll are in the system folder (system32 too, just in case) path to the extensions is correct Fatal error: Call to undefined function: curl_init() in E:\sitegrp1\TEST20051010\curltest.php on line 3 ack! Can anyone

Re: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Jasper Bryant-Greene
On Fri, 2005-10-21 at 15:11 -0500, Jay Blanchard wrote: IIS5 on W2K PHP 4.4.n php_curl.dll is not commented. libeay32.dll AND ssleay32.dll are in the system folder (system32 too, just in case) path to the extensions is correct Fatal error: Call to undefined function: curl_init() in

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Jay Blanchard
[snip] Done a phpinfo() to see if the CURL extension is really getting loaded? Is your extension_dir (or whatever it's called) correct in php.ini? The other thing that's caught me out when I've been forced to use that degenerate platform, is that sometimes PHP is using a different php.ini from

Re: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread John Nichel
Jay Blanchard wrote: [snip] Done a phpinfo() to see if the CURL extension is really getting loaded? Is your extension_dir (or whatever it's called) correct in php.ini? The other thing that's caught me out when I've been forced to use that degenerate platform, is that sometimes PHP is using a

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Jay Blanchard
[snip] I just noticed that extension_dir in phpinfo is c:\php4 THAT AIN'T RIGHT! Why is PHP not loading the proper ini file? This is probably the source of my problems all along! ACK! This is what happens when you go over to the dark side. [/snip] It's not my fault! How do I fix this?

Re: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Derek Williams
Probably a really dumb question: Is php_curl.dll available? Jay Blanchard wrote: IIS5 on W2K PHP 4.4.n php_curl.dll is not commented. libeay32.dll AND ssleay32.dll are in the system folder (system32 too, just in case) path to the extensions is correct Fatal error: Call to undefined function:

Re: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Jordan Miller
I agree with John. It looks like you either need a hammer or the rooftop of a 5-story building... Jordan On Oct 21, 2005, at 3:26 PM, Jay Blanchard wrote: [snip] I just noticed that extension_dir in phpinfo is c:\php4 THAT AIN'T RIGHT! Why is PHP not loading the proper ini file? This is

Re: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread John Nichel
Jay Blanchard wrote: [snip] I just noticed that extension_dir in phpinfo is c:\php4 THAT AIN'T RIGHT! Why is PHP not loading the proper ini file? This is probably the source of my problems all along! ACK! This is what happens when you go over to the dark side. [/snip] It's not my

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Jasper Bryant-Greene
On Fri, 2005-10-21 at 15:26 -0500, Jay Blanchard wrote: [snip] I just noticed that extension_dir in phpinfo is c:\php4 THAT AIN'T RIGHT! Why is PHP not loading the proper ini file? This is probably the source of my problems all along! ACK! This is what happens when you go over to

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Jay Blanchard
[/snip] Hell if I know, I haven't touched a Windows machine in years. Move the ini file you want it to read to the location it's looking in? You could symbolic link itoops...wait...no, you can't. ;) [/snip] The ini file IS in the location where phpinfo says that it is reading from --

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Jay Blanchard
[snip] I haven't used Windows for a while, but Start-Search-Files folders (or something like that) and enter php.ini. Delete all results except the one that you've been editing, and then move the one you've been editing around the following folder until you find the one in which it works: c:\php

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread tg-php
Search the machine for php.ini, I'm guessing that you'll find one in your main PHP directory as well as in your main Windows directory. I believe the Windows directory copy is read first. I'm not sure why. At any rate, if it looks like it's reading the wrong copy of PHP.ini, searching your

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Jay Blanchard
[snip] Also3, since you've come over to the dark side as it where :), I'd recommend getting on the PHP Windows mailing list as well since some of your problems are going to be Windows specific and there may be people there with more experience. Good luck Jay! [/snip] There's a PHP Windows

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Jasper Bryant-Greene
On Fri, 2005-10-21 at 15:43 -0500, Jay Blanchard wrote: [snip] I haven't used Windows for a while, but Start-Search-Files folders (or something like that) and enter php.ini. Delete all results except the one that you've been editing, and then move the one you've been editing around the

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Chris W. Parker
Jordan Miller mailto:[EMAIL PROTECTED] on Friday, October 21, 2005 1:32 PM said: I agree with John. It looks like you either need a hammer or the rooftop of a 5-story building... zooom!How is he supposed to smash a computer with the rooftop of a 5-story building? It's too big!!/zooom! --

Re: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread John Nichel
Jay Blanchard wrote: [snip] Also3, since you've come over to the dark side as it where :), I'd recommend getting on the PHP Windows mailing list as well since some of your problems are going to be Windows specific and there may be people there with more experience. Good luck Jay! [/snip]

RE: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Jay Blanchard
[snip] I agree with John. It looks like you either need a hammer or the rooftop of a 5-story building... zooom!How is he supposed to smash a computer with the rooftop of a 5-story building? It's too big!!/zooom! [/snip] By dropping the five story building upside down on to the serverduh!

Re[2]: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-21 Thread Tom Rogers
Hi, Saturday, October 22, 2005, 6:26:57 AM, you wrote: JB [snip] I just noticed that extension_dir in phpinfo is c:\php4 THAT AIN'T RIGHT! Why is PHP not loading the proper ini file? This is probably the source of my problems all along! ACK! JB This is what happens when you go over to