You need to set the permissions on your files directory so that your webserver (Apache) can create directories and files inside of it. There are detailed instructions in the INSTALL file that explain how to use chown/chmod.
Jason Wies aka Zone
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
[REQUIRED] Change permissions for files directory and all it's subdirectories to be writable by Apache
This is the files directory you created earlier and specified in setup (Edit Current Configuratio
n)
cd /path/to/files
chown -R nobody .
-OR-
chmod -R 777 .
Jason Wies aka Zone
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When I login and go to the File Manager It shows everything normal except this
Warning: MkDir failed (No such file or directory) in /home/cncwar/public_html/phpgroupware/phpgwapi/inc/class.vfs_sql.inc.php on line 1643
What's going on and what did I do wrong?
You need to set the permissions on your files directory so that your webserver (Apache) can create directories and files inside of it. There are detailed instructions in the INSTALL file that explain how to use chown/chmod.
Jason Wies aka Zone
What files exactly do I chmod?
From the INSTALL file:
[REQUIRED] Change permissions for files directory and all it's subdirectories to be writable by Apache
This is the files directory you created earlier and specified in setup (Edit Current Configuratio
n)
cd /path/to/files
chown -R nobody .
-OR-
chmod -R 777 .
Jason Wies aka Zone