Changes between Initial Version and Version 1 of Gallery


Ignore:
Timestamp:
02/01/09 21:03:36 (15 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Gallery

    v1 v1  
     1= Installing Gallery =
     2== Emerge ==
     3{{{
     4echo www-apps/gallery gd imagemagick unzip vhosts zip mysql >> /etc/portage/package.use
     5emerge www-apps/gallery
     6}}}
     7
     8== Install in vhost ==
     9{{{
     10webapp-config -I -h www.thinkthinkdo.com -d gallery gallery 2.3
     11}}}
     12
     13Output by webapp-config
     14{{{
     15=================================================================
     16POST-INSTALL INSTRUCTIONS
     17=================================================================
     18
     19For new installations:
     20
     211. Create a directory to share photos and make it writeable by the web server.
     22
     232. Create a database for Gallery 2.
     24        MySQL:  mysqladmin -uroot create gallery2
     25                mysql gallery2 -uroot -e"GRANT ALL ON gallery2.* TO
     26                username@localhost IDENTIFIED BY 'password'"
     27        PostgreSQL:     createdb gallery2 -E UNICODE
     28                if that doesn't work, try
     29                createdb gallery2 -E SQL_ASCII
     30                        if that doesn't work either, try
     31                        createdb gallery2
     32
     333. Now browse to http://www.thinkthinkdo.com/gallery/install
     34
     35NOTE: The installer may complain that FfmpegToolkit.class has been modified.
     36This is normal, as we patch it to fix a bug with newer versions of ffmpeg.
     37
     38For upgrades:
     39
     401. Copy over your config.php and the g2data directory.
     41
     422. If you are using a PHP accelerator, flush its cache.
     43
     443. Browse to http://www.thinkthinkdo.com/gallery/upgrade and follow the
     45        instructions.
     46
     47=================================================================
     48}}}
     49
     50== Post-Install ==
     51To be done !
     52
     53
     54
     55