forked from extern/egroupware
Updated the docs a little
This commit is contained in:
parent
fb4324d771
commit
8ddc0b1fe9
@ -19,6 +19,12 @@
|
||||
- Started adding support for Oracle databases (Not working yet)
|
||||
- Added new layout for admin and preferences sections.
|
||||
- Fixed acounts not using link() properly and kicking admin out of searchs.
|
||||
- Removed globalconfig.inc.php and moved it into the database. Theres now a nice new
|
||||
setup program.
|
||||
- Updated docs a great deal.
|
||||
- Group public items should now be working.
|
||||
|
||||
- A bunch of other minor bug fixes.
|
||||
|
||||
[09072000] - Added print icon that allows you to print out a page without having
|
||||
the navbar. Thanks Sam Wynn Jr <sam.wynn@lmco.com>
|
||||
|
@ -1,14 +1,8 @@
|
||||
This release requires you to resubmit all of your user accounts. The format of the groups field
|
||||
has changed.
|
||||
This version is our first beta version. This means that the API is now stable enough to use for add on apps.
|
||||
There will be bugs, but the structure should change very much from this point on.
|
||||
|
||||
The inventory program has a new field called mstock.
|
||||
This version contains a great deal of database changes. We applogize for so many changes, but it is required
|
||||
to make things work correctly and to start rolling in support for Oracle.
|
||||
|
||||
There is a new translation support system, you need to add the lang table
|
||||
The sql commands to do so can be found at the end of the create_table script
|
||||
You also need to dump in the new doc/lang.sql file
|
||||
|
||||
on MySQL
|
||||
$ mysql phpgroupware -u username -p < doc/lang.sql</tt>
|
||||
|
||||
on postgresql
|
||||
$ psql -d phpgroupware -U username < doc/lang.sql</tt>
|
||||
You will need to run the new phpgroupware/setup/index.php program. Right now its kind of limited, but
|
||||
in the future it might auto update database tables.
|
@ -11,11 +11,6 @@ insert into config (config_name, config_value) values ('encryptkey', 'change thi
|
||||
insert into config (config_name, config_value) values ('site_title', 'phpGroupWare');
|
||||
insert into config (config_name, config_value) values ('hostname', 'local.machine.name');
|
||||
insert into config (config_name, config_value) values ('webserver_url', '/phpgroupware');
|
||||
insert into config (config_name, config_value) values ('db_host', 'localhost');
|
||||
insert into config (config_name, config_value) values ('db_name', 'phpGroupWare_dev');
|
||||
insert into config (config_name, config_value) values ('db_user', 'phpgroupware');
|
||||
insert into config (config_name, config_value) values ('db_pass', 'phpgr0upwar3');
|
||||
insert into config (config_name, config_value) values ('db_type', 'mysql');
|
||||
insert into config (config_name, config_value) values ('auth_type', 'sql');
|
||||
insert into config (config_name, config_value) values ('ldap_host', 'localhost');
|
||||
insert into config (config_name, config_value) values ('ldap_context', 'o=phpGroupWare');
|
||||
|
Loading…
Reference in New Issue
Block a user