* mwestern@xxxxxxxxxxx <mwestern@xxxxxxxxxxx>: > I've used the simple password script in the past to password protect > pages with a session. http://www.phpbuddy.com/article.php?id=23 > Now that I have installed Fedora Core 2 and 3 the new version of php > (4.3.4) doesn't like this script any more. > > Any ideas why? Yes. It's using the global arrays HTTP_POST_VARS and HTTP_SESSION_VARS arrays, and 4.3.x has the directive register_globals set to off by default. It's safer to leave it off. You can easily update the script by replacing these with $_POST and $_SESSION, respectively. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association | http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org mailto:matthew@xxxxxxxxxx | http://vermontbotanical.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php