Missing files: modules/core/classes/GalleryStorage/g2_db2.jar
ydavka
Joined: 2012-02-06
Posts: 1 |
![]() |
Hi everybody I'm using Fedora14 and INSTALLEd Gallery2 with yum and it went normally ========== Did I miss anything during install ? Here are my packages instlled ======================================================================================================================================== Transaction Summary Total download size: 3.7 M |
|
Dayo
Joined: 2005-11-04
Posts: 1642 |
![]() |
Don't use yum or any other package manager to install G2. Package managers are generally great as someone would have put them together expertly but for projects like G2, they can be out of date etc. Follow this process from your command line instead # Install dependencies $ yum install tar wget php mysql httpd # Go to your webroot ... usually something like "/home/yourusername/example.com" $ cd /home/yourusername/your-domain.com $ wget http://downloads.sourceforge.net/gallery/gallery-2.3.1-minimal.tar.gz $ tar -xvzf gallery-2.3.1-minimal.tar.gz # If you want to give your gallery folder a specific name, such as "mygallery' instead of the default "gallery2", then run the next line $ mv gallery2 mygallery # if you logged in as root, you want to change the file ownerships $ chown -R yourusername:yourusergroup * Navigate to your-domain.com/mygallery and follow the onscreen instructions. -- |
|