###########
PHP Link Directory Installation Problem – “Session variables are not available or not properly configured”


While installing PHPLD on the second page i get an error message ” Session variables are not available or not properly configured.” The problem I identified was with the “include/config.php” setting.

The issue can be resolved in one the following ways:

a) in the .htacces add this if your host allows you to set php attributes:
php_value session.save_path /yourdomain/tmp/
obviously change yourdomain to your real site.

or

b) in the /include/config.php, add under the other ini_set that is in there:
ini_set (‘session.save_path’, ‘/tmp’);
or
ini_set (‘session.save_path’, INSTALL_PATH.’temp’);

##########