have a look into your PHP.INI:
; - register_globals = Off
; Global variables are no longer registered for input data (POST, GET,
cookies,
; environment and other server variables). Instead of using $foo, you
must use
; $HTTP_POST_VARS["foo"], $HTTP_GET_VARS["foo"],
$HTTP_COOKIE_VARS[
Yes, it is possible (I use it both with IIS and Apache),
but you must use Challenge-Response security mode (IIS only)
and all clients must be IE only.
You can use Apache server as well - but you need extra module
ApacheModuleNTLM.dll
(http://members.ozemail.com.au/~timcostello/mod_ntlm/)
MaT
>-
Hi,
I found following problem (maybe bug ?) in PHP 4.0.x.
When I try to read contents of UNC named directory, function:
opendir() always return success even when the directory doesn't exist.
readdir() always returns nothing even when the directory exists and contain
files.