Wiki tools: Difference between revisions
Jump to navigation
Jump to search
(Created page with "* wiki special page * change on sidebar * change on sidebar tool box area") |
No edit summary |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
* [[Special:SpecialPages|wiki special page]] | * [[Special:SpecialPages|wiki special page]] | ||
* [[MediaWiki:Sidebar|change on sidebar]] | * [[MediaWiki:Sidebar|change on sidebar]] | ||
* [[ | * [[MediaWiki:Common.js |change on sidebar tool box area]] | ||
* disable image folder browsing | |||
At zcluster, logging to wiki as rccstaff or yhuang | |||
<pre> | |||
vi /etc/apache2/httpd.conf | |||
<Location /var/www/images> | |||
Order deny,allow | |||
Allow from 128.192.75.102 | |||
Deny from all | |||
</Location> | |||
<Directory /var/www/images> | |||
Options -Indexes | |||
</Directory> | |||
</pre> | |||
restart server as | |||
<pre> | |||
/etc/init.d/apache2 restart | |||
</pre> | |||
====XML backup of Wiki data (GD 12/11/13)==== | |||
*As root on wiki.gacrc.uga.edu, change to: /var/www/maintenance | |||
*Run the following: php ./dumpBackup.php --full > /tmp/wikibackup.xml | |||
*Copy that file elsewhere (until we cron this process) |
Latest revision as of 23:20, 27 April 2015
- wiki special page
- change on sidebar
- change on sidebar tool box area
- disable image folder browsing
At zcluster, logging to wiki as rccstaff or yhuang
vi /etc/apache2/httpd.conf <Location /var/www/images> Order deny,allow Allow from 128.192.75.102 Deny from all </Location> <Directory /var/www/images> Options -Indexes </Directory>
restart server as
/etc/init.d/apache2 restart
XML backup of Wiki data (GD 12/11/13)
- As root on wiki.gacrc.uga.edu, change to: /var/www/maintenance
- Run the following: php ./dumpBackup.php --full > /tmp/wikibackup.xml
- Copy that file elsewhere (until we cron this process)