mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
changes from phpgw to egw dev group
This commit is contained in:
parent
b01bf986dc
commit
5dbe54beb0
@ -4,7 +4,7 @@ Command examples are suggestions only. Use your head.
|
|||||||
|
|
||||||
COMMAND SUMMARY
|
COMMAND SUMMARY
|
||||||
---------------
|
---------------
|
||||||
cp -a /some/path/to/phpgroupware/files /path/to/files
|
cp -a /some/path/to/egroupware/files /path/to/files
|
||||||
cd /path/to/files
|
cd /path/to/files
|
||||||
chown -R nobody .
|
chown -R nobody .
|
||||||
-OR-
|
-OR-
|
||||||
@ -15,7 +15,7 @@ http://yourhost.com/setup/ > Setup/Config > Edit Current Configuration
|
|||||||
|
|
||||||
FULL EXPLANATION
|
FULL EXPLANATION
|
||||||
----------------
|
----------------
|
||||||
[REQUIRED] Copy phpgroupware/files to where you want to store the files.
|
[REQUIRED] Copy egroupware/files to where you want to store the files.
|
||||||
THIS SHOULD BE SOMEWHERE NOT INSIDE THE WEBROOT AND NOT ACCESSIBLE TO THE WEB.
|
THIS SHOULD BE SOMEWHERE NOT INSIDE THE WEBROOT AND NOT ACCESSIBLE TO THE WEB.
|
||||||
Having the files within the webroot is a huge security risk as well as a privacy concern.
|
Having the files within the webroot is a huge security risk as well as a privacy concern.
|
||||||
The exception to this would be if you WANT the users' and groups' files to be accessible
|
The exception to this would be if you WANT the users' and groups' files to be accessible
|
||||||
|
@ -4,7 +4,7 @@ Note: if you don't know what WebDAV is you probably don't need it. The default
|
|||||||
vfs_sql is generally faster and easier to setup.
|
vfs_sql is generally faster and easier to setup.
|
||||||
|
|
||||||
Filemanager's WebDAV support allows you to store your files online in
|
Filemanager's WebDAV support allows you to store your files online in
|
||||||
phpgroupware, in a way that cooperates well with other web applications (for
|
egroupware, in a way that cooperates well with other web applications (for
|
||||||
instance, in Windows you can then access your files as a "web folder", and
|
instance, in Windows you can then access your files as a "web folder", and
|
||||||
similarly KDE, Gnome, MacOSX, and amultitude of applications (eg MS Office and
|
similarly KDE, Gnome, MacOSX, and amultitude of applications (eg MS Office and
|
||||||
OpenOffice.org) all include some way of browsing files on a WebDAV share)
|
OpenOffice.org) all include some way of browsing files on a WebDAV share)
|
||||||
@ -35,10 +35,10 @@ To install:
|
|||||||
RemoveType application/x-httpd-php-source .phps
|
RemoveType application/x-httpd-php-source .phps
|
||||||
</Location>
|
</Location>
|
||||||
<Files ~ "^\.ht">
|
<Files ~ "^\.ht">
|
||||||
#This ensures phpgroupware can modify .htaccess files
|
#This ensures egroupware can modify .htaccess files
|
||||||
order deny,allow
|
order deny,allow
|
||||||
deny from all
|
deny from all
|
||||||
#make sure your phpgroupware server is included here.
|
#make sure your egroupware server is included here.
|
||||||
allow from localhost .localdomain
|
allow from localhost .localdomain
|
||||||
</Files>
|
</Files>
|
||||||
ServerName files.yourdomain.com
|
ServerName files.yourdomain.com
|
||||||
@ -46,7 +46,7 @@ To install:
|
|||||||
CustomLog logs/dav_acc combined
|
CustomLog logs/dav_acc combined
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
|
|
||||||
2/ On the setup page (phpgroupware/setup/config.php) specify
|
2/ On the setup page (egroupware/setup/config.php) specify
|
||||||
the WebDAV server URL (eg http://files.yourdomain.com ) in the: "Full path
|
the WebDAV server URL (eg http://files.yourdomain.com ) in the: "Full path
|
||||||
for users and groups files" text area, and select DAV in the:
|
for users and groups files" text area, and select DAV in the:
|
||||||
"Select where you want to store/retrieve filesystem information"
|
"Select where you want to store/retrieve filesystem information"
|
||||||
@ -61,7 +61,7 @@ To install:
|
|||||||
/var/files/home/
|
/var/files/home/
|
||||||
|
|
||||||
4/ (OPTIONAL) Ideally you want some kind of authentication on the WebDAV
|
4/ (OPTIONAL) Ideally you want some kind of authentication on the WebDAV
|
||||||
repository, so that users accessing it directly still need their phpgroupware
|
repository, so that users accessing it directly still need their egroupware
|
||||||
password.
|
password.
|
||||||
To enable authentication you must use a third-party Apache authentication
|
To enable authentication you must use a third-party Apache authentication
|
||||||
module. Which you use depends on how you have setup authentication in
|
module. Which you use depends on how you have setup authentication in
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
Module: filemanager
|
|
||||||
Authors: Jason Wies <zone@phpgroupware.org>, Jonathon Sim <sim@zeald.com> and the team at Zeald
|
|
||||||
|
|
||||||
Description: The file manager for phpGroupWare. Abilities include all common
|
|
||||||
file actions (upload, mkdir, rename, delete, copy, move), creating and editing
|
|
||||||
text files, and syncing with the file system. Per file/directory comments are
|
|
||||||
stored, and version history is tracked. Group sharing and ACL are fully
|
|
||||||
supported. Files can be stored either as files on the web server, or on a remote WebDAV
|
|
||||||
repository. For installation notes see the file INSTALL in this directory - at minimum
|
|
||||||
you will probably need to set some file permissions.
|
|
||||||
|
|
||||||
|
|
||||||
DEV NOTES
|
|
||||||
---------
|
|
||||||
index.php is depreciated by the inc/class.xxphpwebhosting.inc.php files.
|
|
||||||
index.php is still used in the 0.9.16 release, but all future changes should be
|
|
||||||
made to the inc/class.xxphpwebhosting.inc.php files in CVS (3-tiered). This includes
|
|
||||||
using templates. See the docs in phpgwapi/doc/vfs for more information on
|
|
||||||
interacting with the VFS (Virtual File System).
|
|
||||||
|
|
||||||
There are some simple unit tests in the tests directory : they mainly test the
|
|
||||||
functionality of the VFS classes.
|
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/**************************************************************************\
|
/**************************************************************************\
|
||||||
* phpGroupWare *
|
* eGroupWare *
|
||||||
* http://www.phpgroupware.org *
|
* http://www.egroupware.org *
|
||||||
* -------------------------------------------- *
|
* -------------------------------------------- *
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
* under the terms of the GNU General Public License as published by the *
|
* under the terms of the GNU General Public License as published by the *
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/**************************************************************************\
|
/**************************************************************************\
|
||||||
* phpGroupWare *
|
* eGroupWare *
|
||||||
* http://www.phpgroupware.org *
|
* http://www.egroupware.org *
|
||||||
* Written by Joseph Engo <jengo@phpgroupware.org> *
|
* Written by Joseph Engo <jengo@phpgroupware.org> *
|
||||||
* -------------------------------------------- *
|
* -------------------------------------------- *
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/**************************************************************************\
|
/**************************************************************************\
|
||||||
* phpGroupWare - Calendar's Sidebox-Menu for idots-template *
|
* eGroupWare - Calendar's Sidebox-Menu for idots-template *
|
||||||
* http://www.phpgroupware.org *
|
* http://www.egroupware.org *
|
||||||
* Written by Pim Snel <pim@lingewoud.nl> *
|
* Written by Pim Snel <pim@lingewoud.nl> *
|
||||||
* -------------------------------------------- *
|
* -------------------------------------------- *
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/**************************************************************************\
|
/**************************************************************************\
|
||||||
* phpGroupWare - PHPWebHosting *
|
* eGroupWare *
|
||||||
* http://www.phpgroupware.org *
|
* http://www.egroupware.org *
|
||||||
* -------------------------------------------- *
|
* -------------------------------------------- *
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
* under the terms of the GNU General Public License as published by the *
|
* under the terms of the GNU General Public License as published by the *
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/**************************************************************************\
|
/**************************************************************************\
|
||||||
* phpGroupWare - Setup *
|
* eGroupWare - Setup *
|
||||||
* http://www.phpgroupware.org *
|
* http://www.egroupware.org *
|
||||||
* -------------------------------------------- *
|
* -------------------------------------------- *
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
* under the terms of the GNU General Public License as published by the *
|
* under the terms of the GNU General Public License as published by the *
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/**************************************************************************\
|
/**************************************************************************\
|
||||||
* eGroupWare - PHP Webhosting *
|
* eGroupWare - Filemanager *
|
||||||
* http://www.egroupware.org *
|
* http://www.egroupware.org *
|
||||||
* -------------------------------------------- *
|
* -------------------------------------------- *
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/**************************************************************************\
|
/**************************************************************************\
|
||||||
* phpGroupWare - Setup *
|
* eGroupWare - Setup *
|
||||||
* http://www.phpgroupware.org *
|
* http://www.egroupware.org *
|
||||||
* -------------------------------------------- *
|
* -------------------------------------------- *
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
* under the terms of the GNU General Public License as published by the *
|
* under the terms of the GNU General Public License as published by the *
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/**************************************************************************\
|
/**************************************************************************\
|
||||||
* phpGroupWare - Setup *
|
* eGroupWare - Setup *
|
||||||
* http://www.phpgroupware.org *
|
* http://www.egroupware.org *
|
||||||
* -------------------------------------------- *
|
* -------------------------------------------- *
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
* under the terms of the GNU General Public License as published by the *
|
* under the terms of the GNU General Public License as published by the *
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/**************************************************************************\
|
/**************************************************************************\
|
||||||
* phpGroupWare - filemanager *
|
* eGroupWare - filemanager *
|
||||||
* http://www.phpgroupware.org *
|
* http://www.egroupware.org *
|
||||||
* -------------------------------------------- *
|
* -------------------------------------------- *
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
* under the terms of the GNU General Public License as published by the *
|
* under the terms of the GNU General Public License as published by the *
|
||||||
|
Loading…
Reference in New Issue
Block a user