Points
8
Member
Active member
17 Points
70
3
0
7 day activity
Thu
Fri
Sat
Sun
Mon
Tue
Wed
The issue:
Cannot get Safari to view PDF attachments in the browser, it always just downloads.
The fix option 1:
Install the Open PDF v1.5 add-on:
The fix option 2:
Add this code to your src/config.php file:
Cannot get Safari to view PDF attachments in the browser, it always just downloads.
The fix option 1:
Install the Open PDF v1.5 add-on:
Opens PDF attachments in the browser.
- XenforoNulled
- addon open pdf
- Paid Addons [2.x]
The fix option 2:
Add this code to your src/config.php file:
Code:
$c->extend('inlineImageTypes', function(array $imageTypes)
{
$imageTypes['pdf'] = 'application/pdf';
return $imageTypes;
});