OntoWiki: Difference between revisions
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...) |
No edit summary |
||
| 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 | |||
== 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]] | |||
Revision as of 14:44, 15 June 2008
Installation guide of OntoWiki
| OntoWiki | v.0.8 |
server configuration
apache configuration file: httpd.conf
unmark the following line (remove #) #LoadModule rewrite_module modules/mod_rewrite.so
/OntoWiki/.htaccess
RewriteEngine on RewriteBase /path/to/OntoWiki/ # if the http://localhost/OntoWiki/ mapping the RewriteBase /OntoWiki/
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
;-------------------; ; 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