Difference between revisions of "Set up mediawiki on SQLite with Ubuntu Linux"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
Line 1: Line 1:
To set up [[mediawiki]] on SQLite with Ubuntu Linux issue the [[command]]s
+
To [[set up mediawiki]] on SQLite with Ubuntu Linux issue the [[command]]s
 
  apt-get install php5-sqlite
 
  apt-get install php5-sqlite
 
  /etc/init.d/apache2 start
 
  /etc/init.d/apache2 start

Revision as of 11:40, 28 September 2013

To set up mediawiki on SQLite with Ubuntu Linux issue the commands

apt-get install php5-sqlite
/etc/init.d/apache2 start
  • Extract the mediawiki installation package, in this case to apache's default directory:
cd /var/www
tar xvzf /tmp/mediawiki-1.21.2.tar.gz
mv mediawiki-1.21.2 mediawiki
chown -R www-data:www-data mediawiki

Snapshot-mediawiki-setup.png

Continue as instructed.