Page 2 of 2

Posted: Tue Jul 18, 2006 2:45 am
by andym01480
phpBB is pretty reliable in IE, so it must work!

What is

Code: Select all

$_SERVER['SERVER_SOFTWARE']
?

Posted: Tue Jul 18, 2006 8:40 am
by RobertGonzalez
Which server you are using (Apache, IIS, Xitami, lighttpd, etc).

Posted: Tue Jul 18, 2006 9:34 am
by andym01480
Apache on Linux for public and Apache on Windows for development

Posted: Tue Jul 18, 2006 11:02 am
by RobertGonzalez
Sorry, what I meant was, the 'SERVER_SOFTWARE' server var tells you what server application is running on the server, like Apache Httpd, IIS, etc.

Posted: Tue Jul 18, 2006 11:33 am
by andym01480
LOL!

Posted: Wed Jul 19, 2006 6:47 am
by joseph
so what is this

Code: Select all

$_SERVER['SERVER_SOFTWARE']
?

This will work for cpanel or phpmyadmin?

Posted: Wed Jul 19, 2006 8:26 am
by RobertGonzalez
The 'SERVER_SOFTWARE' index of the SERVER global array tells the script what software the physical server is using to serve up pages. Typically, on a Linux machine SERVER_SOFTWARE will be Apache (not always, but usually). On Windows machines, the typical SERVER_SOFTWARE is IIS or Windows Server.

Is this making more sense?