Wiki tools: Difference between revisions

From Research Computing Center Wiki
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


====XML backup of Wiki data====
At zcluster, logging to wiki as rccstaff or yhuang
#  As root on wiki.gacrc.uga.edu, change to:
<pre>
vi /etc/apache2/httpd.conf


/var/www/maintenance
<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>


#Run the following:
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 00:20, 28 April 2015

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)