All Projects → meiu → meiupic

meiu / meiupic

Licence: GPL-2.0 license
简洁好用的多用户图片社区。

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to meiupic

Photonix
This is a new web-based photo management application. Run it on your home server and it will let you find the right photo from your collection on any device. Smart filtering is made possible by object recognition, location awareness, color analysis and other ML algorithms.
Stars: ✭ 592 (+258.79%)
Mutual labels:  gallery, photography, photo
Photoview
Photo gallery for self-hosted personal servers
Stars: ✭ 553 (+235.15%)
Mutual labels:  gallery, photography, photo
Gallery shell
📷 Bash Script to generate static responsive image web galleries.
Stars: ✭ 198 (+20%)
Mutual labels:  gallery, photo
Thumbsup
Generate static HTML photo / video galleries
Stars: ✭ 493 (+198.79%)
Mutual labels:  gallery, photography
Mediabrowser
🏞 A simple iOS photo and video browser with optional grid view, captions and selections written in Swift5.0
Stars: ✭ 579 (+250.91%)
Mutual labels:  gallery, photo
Ptimagealbumviewcontroller
"Image Album" — or "Photo Album" if you like that better — View( Controller) for all crazy iOS developers out there...
Stars: ✭ 199 (+20.61%)
Mutual labels:  gallery, photo
Ptshowcaseviewcontroller
An initial implementation of a "showcase" view( controller) for iOS apps... Visualizes images, videos and PDF files beautifully! (by @pittleorg) [meta: image, photo, video, document, pdf, album, gallery, showcase, gallery, iOS, iPhone, iPad, component, library, viewer]
Stars: ✭ 395 (+139.39%)
Mutual labels:  gallery, photo
Axphotoviewer
An iOS/tvOS photo gallery viewer, useful for viewing a large (or small!) number of photos.
Stars: ✭ 544 (+229.7%)
Mutual labels:  gallery, photo
xGallerify
A lightweight, responsive, smart gallery based on jQuery
Stars: ✭ 52 (-68.48%)
Mutual labels:  gallery, photo
Photo Blog
The Photo Blog Application based on Laravel 5 and Vue.js 2 + Prerender
Stars: ✭ 55 (-66.67%)
Mutual labels:  gallery, photography
Imageviewer.swift
An easy to use Image Viewer that is inspired by Facebook
Stars: ✭ 1,071 (+549.09%)
Mutual labels:  gallery, photo
Telegramgallery
world level Gallery , from Telegram,Photo album selector,QQ style
Stars: ✭ 1,294 (+684.24%)
Mutual labels:  gallery, photo
Ypimagepicker
📸 Instagram-like image picker & filters for iOS
Stars: ✭ 3,661 (+2118.79%)
Mutual labels:  gallery, photo
Rxgalleryfinal
图片选择库,单选/多选、拍照、裁剪、压缩,自定义。包括视频选择和录制。
Stars: ✭ 2,798 (+1595.76%)
Mutual labels:  gallery, photo
Zing Gallery
基于node.js的web相册,让摄影照片的展示更加简单 Web albums based on node.js, more simple to show photography photos
Stars: ✭ 401 (+143.03%)
Mutual labels:  gallery, photography
cgallery
an easy to use, minimalistic image gallery script for your website
Stars: ✭ 17 (-89.7%)
Mutual labels:  gallery, photography
photos
"Fx Fotos" is an opensource gallery app in react native with the same smoothness and features of Google Photos and Apple Photos. It is backend gnostic and connects to decentralized backends like "box", "Dfinity", "Filecoin" and "Crust".
Stars: ✭ 620 (+275.76%)
Mutual labels:  gallery, photo
google-photos-vue
Google Photos album viewer built with Vue.js
Stars: ✭ 17 (-89.7%)
Mutual labels:  gallery, photography
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 (+950.91%)
Mutual labels:  gallery, photo
React Siema
ReactSiema Demo
Stars: ✭ 90 (-45.45%)
Mutual labels:  gallery, photo

MeiuPic 3.0

关于

MeiuPic升级为多用户相册系统了!可以轻松构建图虫、500px之类的图片社区。

安装说明

  1. 下载源代码,可通过以下两种方式:
    • GitHub: 直接下载zip格式的即可
    • 使用Git: git clone [email protected]:meiu/meiupic.git
  2. 在服务器中手动创建数据库,并将install/install.sql导入到数据库中。
  3. 上传代码至服务器。
  4. 将配置文件 data/config.default.php 修改为 data/config.php,并设置您的数据库相关配置:
'database' => array(
        'adapter'  => 'pdomysql',
        'host'     => '127.0.0.1',
        'port'     => '3306',
        'dbuser'   => 'root',
        'dbpass'   => '',
        'dbname'   => 'meiupic',
        'pconnect' => false,
        'charset'  => 'utf8',
        'pre'      => ''
    ),
  1. 启用地址重写。
    • Apache 中如果启用了地址重写了应该自动就能生效。
    • Nginx 的地址重写规则如下:
location / {
    if (!-e $request_filename) {
        rewrite ^/(.*)$ /index.php?q=$1&$args last;
        break;
    }
}
  1. 使用用户名:admin 密码:admin 体验吧。
  2. 后台访问地址为: http://域名/admin/

注意如果您不是放在网站根目录中

  1. 需要修改data/config.php中的
    'base_url' => '/目录/',
    'admin_base' => '/目录/admin/',
    'public_url' => '/目录/public/',
    'storage' => array(
        'adapter' => 'file', //存储引擎,目前支持file,qiniu两种
        'setting' => array(
            'dirpath' => ROOT_DIR.'public/upfiles/',
            'url_pre' => '/目录/public/upfiles/'
        )
    ),
  1. 如果使用Nginx,地址重写规则也要相应修改
location / {
    if (!-e $request_filename) {
        rewrite ^/目录/(.*)$ /目录/index.php?q=$1&$args last;
        break;
    }
}

如何使用七牛存储来存图片

可以通过修改配置文件直接支持七牛存储

    'storage' => array(
        'adapter' => 'qiniu', //存储引擎,目前支持file,qiniu两种
        'setting' => array(
            'bucket' => 'bucket名字',
            'access_key' => '请填写七牛的access_key',
            'secret_key' => '请填写七牛的secret_key',
            'url_pre' => 'http://七牛bucket绑定的域名/',
            'area' => 'z0' //这里输入七牛的区域
        )
    ),

祝您使用愉快!

如果发现了bug,欢迎在issues中提交。

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