squirrelmail login error

redjersey

Verified User
Joined
Apr 22, 2013
Messages
91
Location
Toronto, Canada
My DA has squirrelmail installed 1.4.22

when I enter my email address and password I got the error message saying:


Error opening /var/www/html/squirrelmail/data/default_pref
Could not create initial preference file!
/var/www/html/squirrelmail/data/ should be writable by user admin
Please contact your system administrator and report this error.
 
nevermind, fixed this by following this guide:
http://forum.directadmin.com/showthread.php?t=37467

Add the RUidGid line below between the <Directory "/var/www/html"> and </Directory>
Code:
<Directory "/var/www/html">
Options -Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
<IfModule mod_suphp.c>
suPHP_Engine On
suPHP_UserGroup webapps webapps
SetEnv PHP_INI_SCAN_DIR
</IfModule>
RUidGid webapps webapps
</Directory>
 
Back
Top