Difference between revisions of "Piwigo Photo Gallery"

From wikidb
Jump to: navigation, search
(Created page with "= Reference = * [http://piwigo.org Piwigo] * [http://blog.technerdservices.com/index.php/2015/05/creating-a-home-server-part-8-finale-how-to-install-piwigo-photo-gallery-on-u...")
 
(Reference)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
= Not Used =
 +
 +
The casual user interface was more difficult than I wanted for distributing vintage photos.
 +
 
= Reference =
 
= Reference =
  
 
* [http://piwigo.org Piwigo]
 
* [http://piwigo.org Piwigo]
* [http://blog.technerdservices.com/index.php/2015/05/creating-a-home-server-part-8-finale-how-to-install-piwigo-photo-gallery-on-ubuntu-14-04/ Install]
+
* [https://en.wikipedia.org/wiki/Comparison_of_photo_gallery_software Photo Gallery Comparisons]
 +
 
 +
= Install =
 +
 
 +
* [http://blog.technerdservices.com/index.php/2015/05/creating-a-home-server-part-8-finale-how-to-install-piwigo-photo-gallery-on-ubuntu-14-04/ Install from technerdservices]
 +
 
 +
Downloaded Piwigo from
 +
  http://piwigo.org
 +
 
 +
  sudo mv piwigo/ /var/www/html/
 +
 
 +
  sudo chown www-data:www-data -R /var/www/html/piwigo
 +
 
 +
  mysql -u root -p
 +
  create database piwigo;
 +
  exit
 +
 
 +
In browser
 +
  http://localhost/piwigo
 +
 
 +
Other instructions
 +
* [https://www.rosehosting.com/blog/install-your-own-photo-gallery-using-piwigo-and-ubuntu-14-04-lts-vps/ Install from rosehosting]
 +
* [https://www.digitalocean.com/community/tutorials/how-to-install-the-piwigo-photo-gallery-on-ubuntu-14-04 Install from digitalocean]

Latest revision as of 09:33, 18 June 2016

Not Used

The casual user interface was more difficult than I wanted for distributing vintage photos.

Reference

Install

Downloaded Piwigo from

 http://piwigo.org
 sudo mv piwigo/ /var/www/html/ 
 
 sudo chown www-data:www-data -R /var/www/html/piwigo
 
 mysql -u root -p
 create database piwigo;
 exit

In browser

 http://localhost/piwigo

Other instructions