International PHP Conference Munich 2025

Voting

: max(six, one)?
(Example: nine)

The Note You're Voting On

webmaster at iacomputing dot co dot uk
14 years ago
You can use umask to solve the PHP session bug that appears in several PHP versions.

<?php
umask
(0022);
session_start();
?>

This will prevent sessions being created with inadequate permissions.

<< Back to user notes page

To Top