Changes between Version 2 and Version 3 of TikiWiki


Ignore:
Timestamp:
02/18/10 16:06:57 (14 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TikiWiki

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