OntoWiki: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
(新頁面: == apache configuration file: httpd.conf == unmark this line (remove #) #LoadModule rewrite_module modules/mod_rewrite.so == /OntoWiki/.htaccess == RewriteEngine on RewriteBase /path/t...)
 
m (1個修訂)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Installation guide of OntoWiki


== apache configuration file: httpd.conf ==
{{Software version| software=OntoWiki | url=http://ontowiki.net/Projects/OntoWiki?v=y8t |  version=0.8 }}
unmark this line (remove #)
 
 
== server configuration ==
=== apache configuration file: httpd.conf ===
<pre>
unmark the following line (remove #)
#LoadModule rewrite_module modules/mod_rewrite.so
#LoadModule rewrite_module modules/mod_rewrite.so
</pre>


 
=== /OntoWiki/.htaccess ===
== /OntoWiki/.htaccess ==
<pre>
RewriteEngine on
RewriteEngine on
RewriteBase /path/to/OntoWiki/
RewriteBase /path/to/OntoWiki/
# if the http://localhost/OntoWiki/  mapping the  RewriteBase /OntoWiki/
# if the http://localhost/OntoWiki/  mapping the  RewriteBase /OntoWiki/
</pre>


== DB settings ==
== DB settings ==
=== add new table ===
Add new MySQL table 'ontowiki' & modify the privileges for the table.
=== OntoWiki configuration file ===
edit /OntoWiki/config.ini.dist to config.ini
edit /OntoWiki/config.ini.dist to config.ini
<pre>
<pre>
Line 24: Line 36:




http://localhost/ontowiki/boot.php
Link to  <nowiki>http://localhost/ontowiki/boot.php</nowiki> to complete the installation.
 
 
Reference: [http://ontowiki.net/Projects/OntoWiki/FirstSteps?v=18zl AKSW : Projects / Onto Wiki / First Steps]
 
[[Category:Wiki]] [[Category:Software]]

Latest revision as of 14:34, 21 June 2009

Installation guide of OntoWiki

OntoWiki v.0.8



server configuration[edit]

apache configuration file: httpd.conf[edit]

unmark the following line (remove #)
#LoadModule rewrite_module modules/mod_rewrite.so

/OntoWiki/.htaccess[edit]

RewriteEngine on
RewriteBase /path/to/OntoWiki/
# if the http://localhost/OntoWiki/  mapping the  RewriteBase /OntoWiki/

DB settings[edit]

add new table[edit]

Add new MySQL table 'ontowiki' & modify the privileges for the table.

OntoWiki configuration file[edit]

edit /OntoWiki/config.ini.dist to config.ini

;-------------------;
; Database Settings ;
;-------------------;

database.params.host     = localhost
database.params.username = owuser
database.params.password = owpass
database.params.dbname   = ontowiki


Link to http://localhost/ontowiki/boot.php to complete the installation.


Reference: AKSW : Projects / Onto Wiki / First Steps