Absynthe
06-20-2006, 09:57 PM
Hi, I want to inform you about a bug I met when I have installed PP.
As several thousands french people, my website is hosted by my Internet provider "Free".
The problem is that the default sessions directory doesn't exist. So after the installation of PP it's impossible for us to log on and makes a lot of php errors.
It could be a problem for people who don't know the issue of this problem.
So I think you should automatically create it if it doesn't exist to avoid problems.
// In 'admin/install.php'
$dir = session_save_path();
if (!is_dir($dir))
{
mkdir($dir);
}
Regards.
As several thousands french people, my website is hosted by my Internet provider "Free".
The problem is that the default sessions directory doesn't exist. So after the installation of PP it's impossible for us to log on and makes a lot of php errors.
It could be a problem for people who don't know the issue of this problem.
So I think you should automatically create it if it doesn't exist to avoid problems.
// In 'admin/install.php'
$dir = session_save_path();
if (!is_dir($dir))
{
mkdir($dir);
}
Regards.