All Projects → UberGallery → Ubergallery

UberGallery / Ubergallery

Licence: mit
An easy to use, simple to manage, web photo gallery written in PHP.

Projects that are alternatives of or similar to Ubergallery

Chevereto Free
Self-hosted Image Hosting solution. Start your own Flickr/imgur alternative with your own rules.
Stars: ✭ 2,275 (+1103.7%)
Mutual labels:  gallery, photo-gallery, image-gallery
React Grid Gallery
Justified image gallery component for React
Stars: ✭ 571 (+202.12%)
Mutual labels:  gallery, photo-gallery
Lightgallery.js
Full featured JavaScript image & video gallery. No dependencies
Stars: ✭ 5,168 (+2634.39%)
Mutual labels:  gallery, image-gallery
Yimagepicker
小红书多图剪裁+微信图片选择器+大图预览+图片剪裁(支持圆形剪裁和镂空剪裁),已适配androidQ,借鉴并升级matisse加载内核!超强定制性可轻松实现知乎/马蜂窝/微博等特殊样式!支持跨进程回调!内部结构轻量级,无任何第三方开源库!支持support依赖!
Stars: ✭ 975 (+415.87%)
Mutual labels:  gallery, photo-gallery
Photos
📸 Your memories under your control
Stars: ✭ 157 (-16.93%)
Mutual labels:  gallery, photo-gallery
Filterizr
✨ Filterizr is a JavaScript library that sorts, shuffles and filters responsive galleries using CSS3 transitions ✨
Stars: ✭ 546 (+188.89%)
Mutual labels:  gallery, image-gallery
React Upload Gallery
React for Upload Image Gallery. Drag & Drop, Sortable, Customize.
Stars: ✭ 33 (-82.54%)
Mutual labels:  gallery, image-gallery
Insgallery
📸 Instagram-like image picker for Android (一款 UI 炫酷高仿 Instagram 的图片、视频选择器)
Stars: ✭ 409 (+116.4%)
Mutual labels:  gallery, photo-gallery
Piwigo
Manage your photos with Piwigo, a full featured open source photo gallery application for the web. Star us on Github! More than 200 plugins and themes available. Join us and contribute!
Stars: ✭ 1,346 (+612.17%)
Mutual labels:  photo-gallery, image-gallery
Stfalconimageviewer
A simple and customizable Android full-screen image viewer with shared image transition support, "pinch to zoom" and "swipe to dismiss" gestures
Stars: ✭ 1,734 (+817.46%)
Mutual labels:  gallery, photo-gallery
Aphotomanager
Manage local photos on Android: gallery, geotag with photomap, privacy, tags, find, sort, view, copy, send, ... .
Stars: ✭ 164 (-13.23%)
Mutual labels:  gallery, photo-gallery
React Viewer
react image viewer, supports rotation, scale, zoom and so on
Stars: ✭ 502 (+165.61%)
Mutual labels:  gallery, image-gallery
Pickphotosample
Photo Picker Of Android Library
Stars: ✭ 457 (+141.8%)
Mutual labels:  gallery, photo-gallery
Photoview
Photo gallery for self-hosted personal servers
Stars: ✭ 553 (+192.59%)
Mutual labels:  gallery, photo-gallery
React Alice Carousel
React responsive component for building content galleries, content rotators and any React carousels
Stars: ✭ 419 (+121.69%)
Mutual labels:  gallery, image-gallery
Spotlight
Web's most easy to integrate lightbox gallery library. Super-lightweight, outstanding performance, no dependencies.
Stars: ✭ 799 (+322.75%)
Mutual labels:  gallery, photo-gallery
angular-super-gallery
AngularJS super image gallery
Stars: ✭ 46 (-75.66%)
Mutual labels:  gallery, image-gallery
Angular2 Image Gallery
Image Gallery built with Angular 8+, node.js and GraphicsMagick
Stars: ✭ 288 (+52.38%)
Mutual labels:  gallery, image-gallery
Picker
Picker - A CameraX based WhatsApp Style Image-Video Picker
Stars: ✭ 69 (-63.49%)
Mutual labels:  photo-gallery, image-gallery
React Bnb Gallery
Simple react-based photo gallery inspired by Airbnb image gallery.
Stars: ✭ 145 (-23.28%)
Mutual labels:  photo-gallery, image-gallery

UberGallery - The simple PHP photo gallery

Created by, Chris Kankiewicz

Introduction

UberGallery is an easy to use, simple to manage, web photo gallery written in PHP and distributed under the MIT License. UberGallery does not require a database and supports JPEG, GIF and PNG file types. Simply upload your images and UberGallery will automatically generate thumbnails and output standards compliant XHTML markup on the fly.

Like this project? Want to keep it free? Make a donation.

Features

  • Simple first time installation
  • Database-less configuration
  • Include galleries within pre-existing sites
  • Create multiple galleries with a single installation
  • Easily customize your gallery styles via CSS
  • Install and update the gallery easily wth Git (optional)

Requirements

UberGallery requires PHP 5.2+ and the PHP-GD image library to work properly. For more information on PHP and the PHP-GD image library, please visit http://php.net.

Simple Installation

  1. Copy resources/sample.galleryConfig.ini to resources/galleryConfig.ini and modify the settings to your liking.

  2. Upload index.php, resources/ and gallery-images/ to your web server.

  3. Upload images to the gallery-images/ directory.

  4. Make the resources/cache/ directory writable by the web server:

```
chmod 777 /path/to/resources/cache
```
  1. Open your web browser and load the page where you installed UberGallery.

Custom Installation

  1. Copy resources/sample.galleryConfig.ini to resources/galleryConfig.ini and modify the settings to your liking.

  2. Upload the resources/ folder to your web server.

  3. Insert the following code into the PHP page where you would like the gallery to be displayed (be sure to change the include and image folder path to match your configuration):

```php
<?php include_once('path/to/resources/UberGallery.php'); $gallery = UberGallery::init()->createGallery('path/to/images-folder'); ?>
```
  1. Include the UberGallery and desired ColorBox style sheet in your page header:
```html
<link rel="stylesheet" type="text/css" href="path/to/resources/UberGallery.css" />
<link rel="stylesheet" type="text/css" href="path/to/resources/colorbox/1/colorbox.css" />
```

**NOTE:** You can replace the `1` with a value between 1 and 5 for different ColorBox themes.
  1. Include the jQuery and ColorBox javascript files in your page header:
```html
<script type="text/javascript" src="://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="path/to/resources/colorbox/jquery.colorbox.js"></script>
```
  1. Include the ColorBox jquery call in your header:
```html
<script type="text/javascript">
$(document).ready(function(){
    $("a[rel='colorbox']").colorbox({maxWidth: "90%", maxHeight: "90%", opacity: ".5"});
});
</script>
```
  1. Upload images to your images directory.

  2. Make the resources/cache/ directory writable by the web server.

```
chmod 777 /path/to/resources/cache
```
  1. Open your web browser and load the page where you installed UberGallery.

Install with Git

  1. SSH into the your server and clone the UberGallery repository and submodules:
```
git clone --recursive git://github.com/UberGallery/UberGallery.git /path/to/ubergallery
```
  1. Copy resources/sample.galleryConfig.ini to resources/galleryConfig.ini and modify the settings
```
cp resources/sample.galleryConfig.ini resources/galleryConfig.ini
nano resources/galleryConfig.ini
```
  1. Upload images to the gallery-images/ folder within your gallery directory.

  2. Make the resources/cache/ directory writable by the web server.

```
chmod 777 /path/to/resources/cache
```
  1. Open your web browser and load the page where you installed UberGallery.

When using this method to install UberGallery, you may update your installation by running the following commands:

cd /path/to/gallery-directory
git pull origin master
git submodule update

NOTE: If you are installing UberGallery via git into an existing git repository, you will need to add it as a submodule.

git submodule add git://github.com/UberGallery/UberGallery.git path/to/ubergallery
git submodule update --init --recursive path/to/ubergallery

Troubleshooting

If you're having issues with UberGallery here are a few troubleshooting tips:

  • Verify that you have PHP 5.2 or later installed. You can verify your PHP version by running:

    php --version
    
  • Make sure you have the latest version of UberGallery installed. You can always find the latest version at http://www.ubergallery.net/#download

  • Replace your galleryConfig.ini with sample.galleryConfig.ini to ensure proper configuration:

    rm resources/galleryConfig.ini
    cp resource/sample.galleryConfig.ini resources/galleryConfig.ini
    
  • Clear your cache and make sure the directory is writable by the web server:

    rm -f resources/cache/*
    chmod 777 resources/cache
    
  • Enable debugging by setting the enable_debugging option in resources/galleryConfig.ini to true, try loading your gallery in a web browser then inspect the debug.log file in your cache directory for any errors.

If you continue to have issues, please email me at: [email protected]

News & Updates

UberGallery updates and news can be found on our blog or by following @UberGallery on Twitter.

Please report bugs to the Github issue tracker.

License

UberGallery is distributed under the terms of the MIT License. Copyright © 2013 Chris Kankiewicz

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].