diff --git a/docs/CREDITS.txt b/docs/CREDITS.txt index a787ae9..d0eaff6 100644 --- a/docs/CREDITS.txt +++ b/docs/CREDITS.txt @@ -5,3 +5,9 @@ phpmailer - http://phpmailer.sourceforge.net (LGPL) Mark Round's AuthLDAP class (class.AuthLDAP.php): http://phpclasses.dknss.com/browse/package/893.html (GPL) + +Javascript +MochiKit - http://www.mochikit.com/ (MIT License) +JS Calendar - http://dynarch.com/mishoo/calendar.epl (LGPL) +TinyMCE - http://sourceforge.net/projects/tinymce/ (LGPL) +Option Transfer Widget - http://www.mattkruse.com/ (Custom License) \ No newline at end of file diff --git a/docs/INSTALL.WIN32.txt b/docs/INSTALL.WIN32.txt new file mode 100644 index 0000000..9d63a49 --- /dev/null +++ b/docs/INSTALL.WIN32.txt @@ -0,0 +1,140 @@ +Windows Specific Installation Instructions +========================================== + +Installation on Windows XP and 2003 requires a slightly different approach to +the *NIX one. + +The easiest installation approach is to use our Windows installer. You can +find this for download on SourceForge, alongside our usual install bundles: + + http://sourceforge.net/projects/kt-dms + +Manual Install (XAMPP) +---------------------- + +If you need to do a manual installation of KnowledgeTree for some reason, +we recommend using a bundled version of Apache, MySQL and PHP. For testing +purposes, we use XAMPP (version 1.5.1): + + http://www.apachefriends.org/en/xampp.html + +General procedure: + + * Install XAMPP + + * Extract the KnowledgeTree zipfile inside the XAMPP htdocs directory. If + you installed XAMPP in + + c:\Program Files\xampp + + then you need to extract KnowledgeTree so that its files are in + + c:\Program Files\xampp\htdocs\knowledgeTree + + This will be referred to as "" in paths from here on. + + * Conduct the Pre-installation checkup. Assuming you are running XAMPP on + "localhost", visit + + http://localhost/knowledgeTree/setup/ + + * Configure the Database. The most effective way to do this with XAMPP is + to use phpmyadmin: + + http://localhost/phpmyadmin/ + + 1. Create a new database (call it "dms") + 2. Create the tables: + + - open the "dms" database from the left-menu/. + - go to "SQL" at the top of the screen. + - Where it says "Location of the text file" click browse and then run: + + * \sql\mysql\install\structure.sql + * \sql\mysql\install\data.sql + * \sql\mysql\install\user.sql + + * Configure your installation in config\config.ini: + + - The default configuration will determine many settings on your + installation automatically, and this is the preferred method of + running KnowledgeTree. Please do not manually set these settings + unless you know what you are doing. + + - The default configuration uses the database username and password + in the user.sql file mentioned above, use the local host for the + database, and use the database named 'dms'. If you follow the + examples above in setting up the database, this means KnowledgeTree + should be fully configured to start working. + + - However, you should change this once you've performed your initial + evalution of KnowledgeTree for the security of your documents. + + - The following settings in config/environment.php control the + database connectivity, and can be set as shown: + + [db] + dbHost = localhost + dbName = dms + dbUser = myuser + dbPass = mypassword + + * Check the post-installation checklist: + + If your knowledgeTree installation is at http://localhost/, go to: + + http://localhost/setup/ + + And click on "Post-installation checkup". + + * Login: + - in a web browser go to your KnowledgeTree installation via the web + - default user is "admin" with password "admin" + + * Register the standard plugins. + + - in a web browser go to "DMS Administration" , then "Miscellaneous", + then "Manage Plugins" + - click "Reread plugins" to load the list of available plugins. + - enable the plugins as required. + + * Please note: * + Fulltext indexing of files (e.g. checking their contents) needs to be + activated from this menu or the full-text search WILL NOT work. + + +File Indexing +------------- + +The file indexing facilities of KnowledgeTree make use of external +programs to perform their jobs. + +At the moment, the "catdoc" (http://www.45.free.net/~vitus/ice/catdoc/) +and "xpdf" packages contains all the external programs you need. +Installing this package is beyond the scope of this document - please +consult the KnowledgeTree Wiki at http://support.ktdms.com/confluence/ +to see how others have approached this on your platform. + +You can find Windows specific installation instructions here: + + http://support.ktdms.com/confluence/display/KTWiki/Windows+XP+installation+instructions + + +Troubleshooting +--------------- + +Please make sure that your KnowledgeTree installation passes all the +pre- and post-installation checkups first. + +Refer to the Frequently Asked Questions list on the KnowledgeTree Wiki +at http://support.ktdms.com/confluence/ + +Ask on the KnowledgeTree forums on http://forum.ktdms.com/. + +If you have found a bug, please report it to the KnowledgeTree bug +reporting system at http://support.ktdms.com/. + +Upgrading +--------- + +Refer to docs/UPGRADE.txt diff --git a/docs/INSTALL.txt b/docs/INSTALL.txt index a2ca236..ee88c4c 100644 --- a/docs/INSTALL.txt +++ b/docs/INSTALL.txt @@ -99,6 +99,15 @@ KnowledgeTree Installation Notes - in a web browser go to your KnowledgeTree installation via the web - default user is "admin" with password "admin" +* Register the standard plugins. + - in a web browser go to "DMS Administration" , then "Miscellaneous", + then "Manage Plugins" + - click "Reread plugins" to load the list of available plugins. + - enable the plugins as required. + + * Please note: * + Fulltext indexing of files (e.g. checking their contents) needs to be + activated from this menu or the full-text search WILL NOT work. File Indexing ------------- diff --git a/docs/README.txt b/docs/README.txt index 1f80256..9c36a76 100644 --- a/docs/README.txt +++ b/docs/README.txt @@ -1,7 +1,7 @@ KnowledgeTree Document Management System ---------------------------------------- -Welcome to the first KnowledgeTree 3 beta. While it represents a +Welcome to the fourth KnowledgeTree 3 beta. While it represents a significant improvement to the visible and background components of KnowledgeTree, it is not yet ready for production use. It is recommended that you ensure you have backups of anything you put into diff --git a/docs/UPGRADE.txt b/docs/UPGRADE.txt index 5660a65..bd5479a 100644 --- a/docs/UPGRADE.txt +++ b/docs/UPGRADE.txt @@ -1,6 +1,13 @@ KnowledgeTree Upgrade instructions ================================== +* Please Note that KT3 Beta 4 is the first post-2.0.x version to support + a sane upgrade path. WE STRONGLY RECOMMEND YOU MAKE A BACKUP BEFORE + YOU START. Please help us by submitting any bugs you find in the migration + process at + + http://support.ktdms.com + Before you upgrade ------------------ diff --git a/docs/VERSION.txt b/docs/VERSION.txt index da35147..bbb1516 100644 --- a/docs/VERSION.txt +++ b/docs/VERSION.txt @@ -1 +1 @@ -2.99.6-20050120-8 +2.99.7 diff --git a/docs/Browse.txt b/docs/developer/Browse.txt index b0eadef..b0eadef 100644 --- a/docs/Browse.txt +++ b/docs/developer/Browse.txt diff --git a/docs/Permissions.txt b/docs/developer/Permissions.txt index ca1c73a..ca1c73a 100644 --- a/docs/Permissions.txt +++ b/docs/developer/Permissions.txt diff --git a/docs/RELEASE.txt b/docs/developer/RELEASE.txt index dfbcb55..dfbcb55 100644 --- a/docs/RELEASE.txt +++ b/docs/developer/RELEASE.txt diff --git a/docs/codingStandards.txt b/docs/developer/codingStandards.txt index 77f457f..77f457f 100644 --- a/docs/codingStandards.txt +++ b/docs/developer/codingStandards.txt diff --git a/docs/i18n.txt b/docs/developer/i18n.txt index c325339..c325339 100644 --- a/docs/i18n.txt +++ b/docs/developer/i18n.txt diff --git a/docs/metadata-versions.txt b/docs/developer/metadata-versions.txt index 30e52a7..30e52a7 100644 --- a/docs/metadata-versions.txt +++ b/docs/developer/metadata-versions.txt