| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| README.txt | 2025-11-30 | 1.5 kB | |
| ImageGalleryCMS-v0.9982.1-[r105].zip | 2025-11-30 | 19.2 MB | |
| ImageGalleryCMS-v.0.8574890-[r104].zip | 2025-05-20 | 25.4 MB | |
| ImageGalleryCMS-v.0.8574899-[r103].zip | 2025-05-08 | 26.1 MB | |
| ImageGalleryCMS-v.0.857489-734682.zip | 2025-05-06 | 26.1 MB | |
| ImageGalleryCMS-v.0.8456489.zip | 2024-07-13 | 25.5 MB | |
| DatabaseSetup.sql.zip | 2024-05-29 | 574.6 kB | |
| ImageGalleryCMS.zip | 2024-05-29 | 25.5 MB | |
| Totals: 8 Items | 148.4 MB | 15 |
# README.txt - Image Gallery Content Management System v0.9982.1 (November 2025)
================================================================
Simple, beautiful, self-hosted photo gallery with admin panel,
e-card designer, A4 PDF generator, and modern sharing features.
================================================================
Features
--------
- Clean style and design (almost mobile-friendly)
- Admin panel with inline editing & bulk actions
- Automatic WebP thumbnails + original full-size images
- Three sort modes: Latest · Top Hits · Oldest
- Per-image detail page with view counter
- Built-in e-Card designer (add text + emojis + uploaded stickers)
- One-click A4 PDF generator (two-page layout with QR code)
- Share buttons + native Web Share API + embed HTML code
- No JavaScript frameworks – pure PHP + vanilla JS
- Zero cookies, zero tracking
Website
---------
https://sourceforge.net/projects/image-gallery-cms/
Quick Start (5 minutes)
----------------------
1. Upload all files to your web server
2. Create a folder called `uploads` in the project root and make it writable
(`chmod 755 uploads` or `777` on some hosts)
3. Create a MySQL/MariaDB database
4. Import `database.sql` (contains the single `images` table)
5. Edit `config.php` – fill in your database credentials:
```php
define('DB_HOST', 'localhost');
define('DB_USER', 'your_username');
define('DB_PASS', 'your_password');
define('DB_NAME', 'your_database_name');