[PHP] PHP Upgrade Problem

2009-12-08 Thread David Stoltz
Folks, I upgraded from PHP 5.2.6 to 5.3.1 on my test machine. Pretty easy, just installed FastCGI for IIS6, installed PHP 5.3.1 and entered the .php ext stuff into IIS6. Now I tried it on my production box. No go. Although the web extension FastCGI Handler can be enabled with no problems, PHP

Re: [PHP] PHP Upgrade Problem

2003-07-25 Thread Tassos T
I thing, you must use $s = getenv('SCRIPT_URL'); and not $s = getenv('SCRIPT_NAME'); in php ver 4.3.2 Shaun wrote: Hi, The following code snippet is supposed to return the current page i am on and append some variables. $s = getenv('SCRIPT_NAME'); $link =

[PHP] PHP Upgrade Problem

2003-07-24 Thread Shaun
Hi, The following code snippet is supposed to return the current page i am on and append some variables. $s = getenv('SCRIPT_NAME'); $link = $s?month=$monthyear=$yeargoto_date=yes; However, since upgrading to PHP version 4.3.2 it returns the following URL:

Re: [PHP] PHP Upgrade Problem

2003-07-24 Thread Curt Zirzow
* Thus wrote Shaun ([EMAIL PROTECTED]): Hi, The following code snippet is supposed to return the current page i am on and append some variables. $s = getenv('SCRIPT_NAME'); $link = $s?month=$monthyear=$yeargoto_date=yes; However, since upgrading to PHP version 4.3.2 it returns the