|
Posted by strawberry on 03/29/07 19:07
On Mar 29, 7:30 pm, Schraalhans Keukenmeester <bitbuc...@invalid.spam>
wrote:
> strawberry wrote:
> > On Mar 29, 6:44 pm, "strawberry" <zac.ca...@gmail.com> wrote:
> >> On Mar 29, 5:01 pm, "J.O. Aho" <u...@example.net> wrote:
>
> >>> strawberry wrote:
> >>>> I recently moved a mysql database and its associated php scripts from
> >>>> one machine to another.
> >>>> Now, however, although no errors are displayed, some aspects of the
> >>>> php interface no longer work properly.
> >>>> I suspect the problem is connected with my use of $PHP_SELF within
> >>>> some of the pages.
> >>>> I replaced "$PHP_SELF" with "$_SERVER['PHP_SELF']" which (I think) is
> >>>> more widely supported but the problem still persists. Is there some
> >>>> aspect of my php configuration that I should look at with respect to
> >>>> this kind of problem?
> >>> If you are using CGI, then $_SERVER[] won't work, if you use ISS you may note
> >>> have full functionality in $_SERVER[].
> >>> As you don't tell anything about the web server, we can't be sure on what goes
> >>> wrong.
> >>> --
> >>> //Aho
> >> It's just a recent xampp installation on a windows xp machine - so an
> >> apache web server.- Hide quoted text -
>
> >> - Show quoted text -
>
> Apart from your odd choice of quoting characters and lines, it could
> help if you ran a test script with the get_defined_vars() function to
> see what is or isn't available in your particular setup.
>
> See the php manual pages for details if you need more directions. If the
> output makes no sense to you, you could post it here.
>
> Rgds
> Sh.- Hide quoted text -
>
> - Show quoted text -
Thanks for the response. get_defined_vars didn't seem to do anything.
Perhaps I implemented it incorrectly. Anyway phpinfo() gives this.
I've masked some of the information:
PHP Variables
Variable Value
_SERVER["AuthDigestEnableQueryStringHack"] On
_SERVER["HTTP_ACCEPT"] image/gif, image/x-xbitmap, image/jpeg, image/
pjpeg, application/x-shockwave-flash, */*
_SERVER["HTTP_ACCEPT_LANGUAGE"] en-gb
_SERVER["HTTP_UA_CPU"] x86
_SERVER["HTTP_ACCEPT_ENCODING"] gzip, deflate
_SERVER["HTTP_USER_AGENT"] Mozilla/4.0 (compatible; MSIE 6.0; Windows
NT 5.2; SV1; .NET CLR 1.1.4322)
_SERVER["HTTP_HOST"] #####
_SERVER["HTTP_CONNECTION"] Keep-Alive
_SERVER["PATH"] C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS
\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files
\Microsoft SQL Server\80\Tools\Binn\
_SERVER["System#####"] C:\WINDOWS
_SERVER["COMSPEC"] C:\WINDOWS\system32\cmd.exe
_SERVER["PATHEXT"] .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
_SERVER["WINDIR"] C:\WINDOWS
_SERVER["SERVER_SIGNATURE"] <address>Apache/2.2.4 (Win32) DAV/2
mod_ssl/2.2.4 OpenSSL/0.9.8d mod_autoindex_color PHP/5.2.1 Server at
##### Port 80</address>
_SERVER["SERVER_SOFTWARE"] Apache/2.2.4 (Win32) DAV/2 mod_ssl/2.2.4
OpenSSL/0.9.8d mod_autoindex_color PHP/5.2.1
_SERVER["SERVER_NAME"] #####
_SERVER["SERVER_ADDR"]#####
_SERVER["SERVER_PORT"] #####
_SERVER["REMOTE_ADDR"] #####
_SERVER["DOCUMENT_#####"] C:/Program Files/xampp/htdocs
_SERVER["SERVER_ADMIN"] ####@#####
_SERVER["SCRIPT_FILENAME"] C:/Program Files/xampp/htdocs/phpinfo.php
_SERVER["REMOTE_PORT"] 4892
_SERVER["GATEWAY_INTERFACE"] CGI/1.1
_SERVER["SERVER_PROTOCOL"] HTTP/1.1
_SERVER["REQUEST_METHOD"] GET
_SERVER["QUERY_STRING"] no value
_SERVER["REQUEST_URI"] /phpinfo.php
_SERVER["SCRIPT_NAME"] /phpinfo.php
_SERVER["PHP_SELF"] /phpinfo.php
_SERVER["REQUEST_TIME"] 1175194379
_SERVER["argv"] Array
(
)
_SERVER["argc"] 0
_ENV["ALLUSERSPROFILE"] C:\Documents and Settings\All Users
_ENV["APPDATA"] C:\Documents and Settings\#####\Application Data
_ENV["CLASSPATH"] C:\Program Files\VERITAS\Backup Exec\NT\ECM
\bumodule.jar;C:\Program Files\VERITAS\Backup Exec\NT\ECM\LOG4J-
CORE.JAR;C:\Program Files\VERITAS\Backup Exec\NT\ECM\LOG4J.JAR;.
_ENV["ClusterLog"] C:\WINDOWS\Cluster\cluster.log
_ENV["CommonProgramFiles"] C:\Program Files\Common Files
_ENV["COMPUTERNAME"] #####SERVER
_ENV["ComSpec"] C:\WINDOWS\system32\cmd.exe
_ENV["FP_NO_HOST_CHECK"] NO
_ENV["HOMEDRIVE"] C:
_ENV["HOMEPATH"] \Documents and Settings\#####
_ENV["LOGONSERVER"] \\#####SERVER
_ENV["NUMBER_OF_PROCESSORS"] 2
_ENV["OS"] Windows_NT
_ENV["Path"] C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:
\Program Files\Symantec\pcAnywhere\;C:\Program Files\Microsoft SQL
Server\80\Tools\Binn\
_ENV["PATHEXT"] .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
_ENV["PROCESSOR_ARCHITECTURE"] x86
_ENV["PROCESSOR_IDENTIFIER"] x86 Family 15 Model 2 Stepping 9,
GenuineIntel
_ENV["PROCESSOR_LEVEL"] 15
_ENV["PROCESSOR_REVISION"] 0209
_ENV["ProgramFiles"] C:\Program Files
_ENV["PROMPT"] $P$G
_ENV["SESSIONNAME"] Console
_ENV["SystemDrive"] C:
_ENV["SystemRoot"] C:\WINDOWS
_ENV["TEMP"] C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
_ENV["TMP"] C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
_ENV["USERDNSDOMAIN"] #####.LOCAL
_ENV["USERDOMAIN"] #####
_ENV["USERNAME"] #####
_ENV["USERPROFILE"] C:\Documents and Settings\#####
_ENV["windir"] C:\WINDOWS
_ENV["AP_PARENT_PID"] 5760
[Back to original message]
|