06682c4bde
including SECURITY FIXES for SA38896 SA38896
30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
$OpenBSD: README.OpenBSD,v 1.2 2010/03/20 17:01:28 jasper Exp $
|
|
|
|
The default superuser account is: admin (password: admin).
|
|
|
|
* Creating a dedicated user and database for Tikiwiki:
|
|
While Tikiwiki partially supports any relational databases such as
|
|
PostgreSQL or SQLite, only MySQL is fully supported.
|
|
Also, it is recommended to use the mysqli extension (php5-mysqli) for php
|
|
communication to the database.
|
|
|
|
$ mysqladmin -u root -p create 'tiki'
|
|
$ mysql -u root -p mysql
|
|
mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER
|
|
-> ON tiki TO 'tiki'@'localhost' IDENTIFIED BY 'yourpassword';
|
|
mysql> quit
|
|
|
|
* Configuring your /var/www/conf/php.ini for Tikiwiki:
|
|
- if you experience timeouts you may need to increase
|
|
max_execution_time and max_input_time
|
|
- if you want to allow trackback pings in your blogs you need to set
|
|
allow_url_fopen = On
|
|
- you should also set the default character encoding to utf-8
|
|
default_charset = "utf-8"
|
|
|
|
* In order to use the Maps feature, please install the Mapserver PHP extension
|
|
(php5-mapscript).
|
|
|
|
* Tikiwiki is a big piece of software, you should refer to the official
|
|
documentation before using it. (http://doc.tikiwiki.org/)
|