Files
sharing-gallery/etc/settings.php

13 lines
488 B
PHP
Raw Normal View History

2017-02-26 11:11:41 +00:00
<?php
2017-03-01 14:36:08 +00:00
require_once('/usr/share/phpqrcode/phpqrcode.php'); // configure path to phpqrcode
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";
2017-03-01 14:36:08 +00:00
$default_mail_text = "Fotos from my gallery, please follow the link:\n\npassword: PASSWORD\n\nlink:\nLINK\n\nRegards\nUSERNAME";
2017-02-28 19:13:21 +00:00
$default_mailto = "";
$fallback_mail_replyto = "";
2017-03-01 14:36:08 +00:00
?>