Commit 7423fc22143501fb49525fa28c623e1256fad16d
1 parent
31fe1fdf
update install
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2537 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
55 additions
and
0 deletions
docs/INSTALL.txt
0 → 100644
| 1 | +KnowledgeTree Installation Notes | ||
| 2 | +-------------------------------- | ||
| 3 | + | ||
| 4 | +* Ensure that you have PHP, MySQL and Apache installed and configured. | ||
| 5 | + - Check that the following PHP configuration options are set appropriately in php.ini: | ||
| 6 | + error_reporting = E_ALL & ~E_NOTICE | ||
| 7 | + file_uploads = On | ||
| 8 | + upload_tmp_dir = C:\PHP\uploadtemp | ||
| 9 | + upload_max_filesize = 2M | ||
| 10 | + session.use_cookies = 1 | ||
| 11 | + | ||
| 12 | +* Move the knowledgeTree folder to the directory it is going to be served from: | ||
| 13 | + $ mv knowledgeTree /path/to/your/html/directory/ | ||
| 14 | + | ||
| 15 | +* Create a database: | ||
| 16 | + $ mysqladmin -p create dms | ||
| 17 | + | ||
| 18 | +* Create and populate the tables: | ||
| 19 | + $ mysql -p dms < sql/tables.sql | ||
| 20 | + | ||
| 21 | +* Configure your installation by changing the following attributes in config/environment.php: | ||
| 22 | + - $default->fileSystemRoot | ||
| 23 | + - $default->serverName | ||
| 24 | + - $default->sslEnabled | ||
| 25 | + - $default->authenticationClass | ||
| 26 | + - $default->dbUser | ||
| 27 | + - $default->dbPass | ||
| 28 | + - $default->dbHost | ||
| 29 | + - $default->dbName | ||
| 30 | + | ||
| 31 | +* Check permissions on the Documents folder | ||
| 32 | + - The "/Documents" folder MUST be able to be written to by your web server. | ||
| 33 | + If your web server is running as user "nobody" and group "nobody" (apache default) | ||
| 34 | + then cd to the files directory and type: | ||
| 35 | + | ||
| 36 | + *nix: 'chown -R nobody.nobody Documents' | ||
| 37 | + Windows: Check the permissions and security tabs | ||
| 38 | + | ||
| 39 | +* Login: | ||
| 40 | + - in a web browser goto http://$default->serverName/$default->rootUrl/ | ||
| 41 | + - default user is "admin" with password "admin" | ||
| 42 | + | ||
| 43 | +Troubleshooting | ||
| 44 | +--------------- | ||
| 45 | + | ||
| 46 | +Refer to docs/FAQ.txt. | ||
| 47 | + | ||
| 48 | + | ||
| 49 | +Jam Warehouse – Smart Business Innovation | ||
| 50 | +Phone: +27 21 4477440 | ||
| 51 | +Fax: +27 21 4477449 | ||
| 52 | +Email: info@jamwarehouse.com | ||
| 53 | +Web: http://www.jamwarehouse.com/ | ||
| 54 | + | ||
| 55 | +$Id$ | ||
| 0 | \ No newline at end of file | 56 | \ No newline at end of file |