OK, that should be a proper syntax. Did you check the permissions for that specific forum? You need to have enabled guest access to attachments ("can download..."), because I don't expect Thunderbird passing the user's credentials to the board to identify the user.colinshead wrote: Mon Dec 10, 2018 11:32 am I had only pasted a snippet from the link, the actual failing link is:
<a href="https://www.forum.leisureowners.org.uk/ ... 2642"><img src="https://www.forum.leisureowners.org.uk/ ... 2&t=1"alt="" title="" /></a>
No need to create any "Plain old .jpg's or similar", because the files are already there. phpBB just stores them under a unique random file name in thecolinshead wrote: Mon Dec 10, 2018 1:22 pm the Digests extension to grab the files, and create plain old .jpg's or similar from them, store them somewhere and link them into the Digest e-mails !!
files
-folder. You can grab the storage systems filename from the attachment table (the attachment-id is in the file.php-parameter id
, the file name on the storage system is in physical_filename
). If there is a thumbnail-file for images (thumbnail
= 1), you can use the physical filename prepended by a string thumb_
to link the smaller image. The mime-type for the file you can grab from column mimetype
to determine if you have a image (img
-link) or a different sort of file (standard-a
-link). The path for linking attachments directly is http://example.org/files (example.org is your boards address)/ext/phpbbservices/digests
./acp/main_module.php
, line 1568 is:Code: Select all
foreach (new \DirectoryIterator($path) as $file_info)
Code: Select all
$path = $this->phpbb_root_path . 'store/phpbbservices/digests';
\ext\phpbbservices\digests\