Files
sharing-gallery/etc/settings.php

12 lines
408 B
PHP
Raw Normal View History

2017-02-26 11:11:41 +00:00
<?php
2017-02-28 21:01:43 +00:00
require_once('qrlib.php');
2017-02-26 22:17:28 +00:00
$imagepath = "/path/to/your/files";
$thumbpath = "/var/tmp/sharing-gallery/thumbnails/";
2017-02-26 21:28:18 +00:00
$max_validity_days = "30";
2017-02-28 12:25:29 +00:00
$font = "DejaVu-Sans";
$preview_num = "5";
2017-02-28 19:13:21 +00:00
$default_mail_subject = "Sharing Gallery: See my Fotos";
$default_mail_text = "Fotos from my gallery:\n\npassword = PASSWORD\n\nlink: LINK\n\nRegards\nUSERNAME";
$default_mailto = "";
$fallback_mail_replyto = "";
2017-02-26 11:11:41 +00:00
?>