| | 13 | |
| | 14 | Postinstall instructions by webapp-config |
| | 15 | {{{ |
| | 16 | ================================================================= |
| | 17 | POST-INSTALL INSTRUCTIONS |
| | 18 | ================================================================= |
| | 19 | |
| | 20 | Setup Completion |
| | 21 | --- |
| | 22 | |
| | 23 | If there is no existing TikiWiki install and database you will need to |
| | 24 | create an empty database for TikiWiki before starting setup. |
| | 25 | You can run "emerge --config =", or (MySQL): |
| | 26 | |
| | 27 | mysql -p -u root mysql <<__EOSQL |
| | 28 | CREATE DATABASE tiki; |
| | 29 | GRANT CREATE, DROP, INDEX, ALTER, SELECT, INSERT, UPDATE, DELETE |
| | 30 | ON tiki.* |
| | 31 | TO tikiuser@localhost |
| | 32 | IDENTIFIED BY 'a_good_password'; |
| | 33 | FLUSH PRIVILEGES; |
| | 34 | __EOSQL |
| | 35 | |
| | 36 | If you are using PostgreSQL, please consult your documentation. |
| | 37 | |
| | 38 | |
| | 39 | TikiWiki likes to have a generous PHP environment. Please edit |
| | 40 | your php.ini or arrange the settings through another mechanism such as |
| | 41 | Apache .htaccess files. |
| | 42 | |
| | 43 | Tiki requires PHP to have : |
| | 44 | ==> 'memory_limit = 16M' |
| | 45 | ==> 'max_execution_time = 60' |
| | 46 | Tiki likes PHP to have : |
| | 47 | ==> 'default_charset = utf-8' |
| | 48 | ==> 'file_uploads = On' |
| | 49 | |
| | 50 | |
| | 51 | Please read the files in /var/www/www.hmun.at/web/tikiwiki/doc |
| | 52 | especially if you want clean URLs under Apache. |
| | 53 | |
| | 54 | You may find further information on the Tiki website |
| | 55 | ==> http://tikiwiki.org/InstallGettingStarted |
| | 56 | |
| | 57 | Note: The equivalent of running setup.sh has already been completed. |
| | 58 | |
| | 59 | |
| | 60 | Now, point your browser to the location of tiki-install.php to complete the |
| | 61 | setup/upgrade. For example: |
| | 62 | |
| | 63 | http://www.hmun.at/tikiwiki/tiki-install.php |
| | 64 | |
| | 65 | You may need to manually rename tiki-install.php to tiki-install.done to |
| | 66 | secure your system. |
| | 67 | |
| | 68 | Enjoy your TikiWiki site. |
| | 69 | |
| | 70 | ================================================================= |
| | 71 | |
| | 72 | * Install completed - success |
| | 73 | }}} |