Wiki tools: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(3 intermediate revisions by one other user not shown) | |||
Line 2: | Line 2: | ||
* [[MediaWiki:Sidebar|change on sidebar]] | * [[MediaWiki:Sidebar|change on sidebar]] | ||
* [[MediaWiki:Common.js |change on sidebar tool box area]] | * [[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 | |||
/var/www/ | <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> | |||
php ./dumpBackup.php --full > /tmp/wikibackup.xml | ====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)