dokuwiki image guide · application installation and deployment, cloud hosting. click here get more...

16

Upload: others

Post on 23-Jul-2020

4 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache
Page 2: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache
Page 3: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache
Page 4: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache
Page 5: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache

lib/plugins/

Page 6: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache

<dokuwiki>/lib/plugins/

% cd <dokuwiki>/lib/plugins/

% git clone git://github.com/tatewake/dokuwiki-plugin-backup.git backup

Page 7: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache

tar zcpfv dokuwiki-backup.tar.gz /data/wwwroot/default/dokuwiki

cd /data/wwwroot/default/dokuwiki

wget https://github.com/splitbrain/dokuwiki.git

Page 8: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache

tar zxvf dokuwiki-xxxx-xx-xx.tgz

'cp' -af dokuwiki-xxxx-xx-xx/* /data/wwwroot/default/dokuwiki/

Page 9: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache
Page 10: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache
Page 11: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache

chown -R www.www /data/wwwroot/default/docuwiki

find /data/wwwroot/default/wordpress -type d -exec chmod 755

find /data/wwwroot/default/wordpress -type f -exec chmod 644

0700 0600

0770 0660

0777 0666

, ,

Page 12: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache
Page 13: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache

name:

upload

Page 14: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache

# service httpd restart

; Maximum size of POST data that PHP will accept.

post_max_size = 16M

; Maximum allowed size for uploaded files.

upload_max_filesize = 16M

Page 15: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache

# service httpd restart

; Maximum execution time of each script, in seconds

; http://php.net/max-execution-time

; Note: This directive is hardcoded to 0 for the CLI SAPI

max_execution_time = 90

; Maximum amount of time each script may spend parsing request data

; idea to limit this time on productions servers in order to eliminate unexpectedly

; long running scripts.

<IfModule mod_php5.c>

php_value max_execution_time 90

</I

Page 16: DokuWiki Image Guide · Application installation and deployment, Cloud Hosting. Click here get more APP Images. Welcome to LAMP stack: PHP * Readme : LAMP Stack User Guide Apache