Hi,

I am trying to install a web application that tests if cookies are enabled the following way:

 $this->usesCookies =
                   (isset($_COOKIE[session_name()]) &&
                    @strlen($_COOKIE[session_name()])
                    == 32);

As it gives as a result, that cookies are NOT ENABLED, I can't go on with the SETUP phase.

The responsible of the FALSE result, in the sentence above, is the LENGTH of the string $_COOKIE[session_name()]. Its actual value is 26 instead of 32, as expected. ¿Could anyone tell me if that LENGTH should be 32? ¿Is this value mandatory to admit that cookies are enabled?

Thanks!

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to