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

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
 
(One intermediate revision by the same user not shown)
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
Line 9: Line 9:
 
  tar xvzf /tmp/mediawiki-1.21.2.tar.gz
 
  tar xvzf /tmp/mediawiki-1.21.2.tar.gz
 
  mv mediawiki-1.21.2 mediawiki
 
  mv mediawiki-1.21.2 mediawiki
  [[chown]] -R www-data:www-data mediawiki
+
  chown -R www-data:www-data mediawiki
  
 
* Point your browser to http://localhost/mediawiki. You see a web site like this:
 
* Point your browser to http://localhost/mediawiki. You see a web site like this:

Latest 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.