Download

All XenForo Resources for only 35.00 $ Months.

Support

Support 24/7 via DM.

Payment

Paypal secure payment.

Refunds

Once you download any Premium files, refunds will not be issued..

Tutorials Viewing PDF attachments in the browser

🕒 Thread author was active 4 hour(s) ago

Xenforo

Ice Admin
Staff member
Ice Staff
1 Level 1
85%
Joined
Jan 16, 2026
Messages
365
Highlights
2
Reaction score
72
Points
28
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:

Code:
$c->extend('inlineImageTypes', function(array $imageTypes)
{
    $imageTypes['pdf'] = 'application/pdf';
    return $imageTypes;
});
 
Back
Top