|
Use a recent versions. 4.2+ is recommended but it will work with 4.1 too (there was a session bug in 4.1.2 which have been pretty problematic).
- You don't need any specific PHP extension to install Tiki but GD is recommended and will be used if you have it. (GD is bundled by default with PHP 4.3+)
- If you want to use uploads (files, images) make sure uploads are enabled in php.ini.
: file_uploads = On
- Tiki uses sessions (a common mechanism in PHP4) make sure that the path where PHP stores sessions (php.ini) exists and that PHP can write to that path. (special case in Shared Hosting environment where you may have no access to /tmp, in which case replace it with temp, with no shlash).
: session.save_handler = files
: session.save_path = /tmp
- It is highly recommended to increase the maximum memory size for PHP scripts from 8 MB to at least 16 MB if not 32 MB in your php.ini configuration file. Uploaded files are hashed with md5(), so watch this setting too if you upload files of several megabytes. Whilst Tiki can run in 8 MB environments for most actions eventually as you load your Tiki with content it requires more memory. Please dont use Tiki in 8Mb environments, it will cause you more problems later on. Before reporting a problem, particularly getting blank pages, change to 16 MB.
: memory_limit = 16M
- Another settings recommended to change which may cause timeouts if your wiki is large and prevent you from doing a Backup through the Admin menu.
: max_execution_time = 60
- With PHP4.1, be sure pcre is enabled (enabled by default with PHP4.2+)
- For character encoding consistency reasons it is recommended to set
: default_charset = "utf-8"
|