PDA

View Full Version : Online Users


12-04-2000, 04:25 AM
What could be the reason that online users aren't showing up anymore? It shows myself but nobody else? I know our server switched from apache to zeus but everything is working fine but that.

12-04-2000, 06:29 AM
for some reason this happens if you run PHP as an ISAPI module under IIS.

I think it's a PHP bug...

12-04-2000, 03:34 PM
This is what the tech guy wrote me. Can you tell me if this will effect me big time?
-----------------------------------------------

We talked to some of its programmers today and they are rushing to get this fixed in the next release, which will be in a few days.
The problem is that some environment variables are not being passed to PHP by Zeus. Variables like DOCUMENT_ROOT, HTTP_REFERER, etc, are no longer working, and thus causing multiple problems.

Some can be easily fixed in your scripts. If you use
DOCUMENT_ROOT, just do this on your scripts:

$DOCUMENT_ROOT = "/home/users....../public_html";

Use your path plus "/public_html". Don't put a "/" at the
end.

With SCRIPT_NAME, use PHP_SELF or REQUEST_URI instead.

Others, like HTTP_REFERER, can't be fixed this way.