Theme editor

Attachment Improvements By Xon

Attachment Improvements By Xon

Attachment Improvements By Xon 2.7.2

XF 2.3 Addons · by Staraddons · StarAddons Verified Vendor
0 Downloads 32 Views 3 Version
A collection of improvements to XF's attachment system. Support for SVG attachments to be displayabl
Price
Free
Available
Download

Overview Version (3) Discussion (3)

  • Attachment Improvements By Xon
    Attachment Improvements By Xon
    A collection of improvements to XF's attachment system. Support for SVG attachments to be displayabl
    attachment
    attachment improvements
    About this resource
    A collection of improvements to XF's attachment system.
    • Byte-range support for resumable downloads
      • Primarily designed for partial content requests for streaming videos, but will work with any file
      • Dependant on the filesystem /internal_data being local, as the remote file system APIs do not easily support this feature
    • Improve drag&drop editor support.
      • Stock XenForo/Froala uses "move" which can result in unexpected content deletion.
      • Tint the active editor's boarder when dragging items over it, and show a file upload symbol over it.
    • Option to strip jpeg EXIF data
    • SVG support
    • Nginx's X-Accel-Redirect
    • New Permissions for forum/conversations (Respects global attachment size & count limits):
      • Attachment Size (kb).
      • Maximum Attachment Count.
    • Adds support for video stream via partial content requests
    SVG Support
    Support for SVG attachments to be displayable as normal images.

    Nginx X-Accel-Redirect (OPTIONAL)
    Enables the use of Nginx's X-Accel-Redirect header feature for attachment serving.

    This permits XenForo to-do validation and authentication, and offload the actual file serving to Nginx. This feature is not particularly well documented, but some info found here.

    After following Using DigitalOcean Spaces or Amazon S3 for file storage in XF 2.x attachments no longer show, you must follow the relevant FAQ entry!

    This addon assumes the /internal_data folder exists within the webroot, and you do not have a 'deny all;' statement but instead use 'internal;' to secure the internal_data folder.

    For example, XenForo is accessible from: /forum rather than then the webroot.

    The following must be added to config.php:
    Code:
    $config['internalDataUrl'] = '/forum/internal_data';

    Something similar to the nginx config may be required in your webserver:
    Code:
    Expand Collapse Copy
    location ^~ /forum/internal_data {
      internal;
      add_header Etag $upstream_http_etag;
      add_header X-Frame-Options SAMEORIGIN;
      add_header X-Content-Type-Options nosniff;
      alias /path/to/internal_data;
    }
    To ensure you match how XenForo serves files, add the following headers into your website config for the internal_data folder:
    Code:
    Expand Collapse Copy
      add_header Etag $upstream_http_etag;
      add_header X-Frame-Options SAMEORIGIN;
      add_header X-Content-Type-Options nosniff;

    New Permissions
    Permits per-forum or conversation attachment size and count limits.

    Respects the global forum wide attachment size/count limits, with per-usergroup settings allowing smaller values.

    Due to how XF integer permissions work, 'unlimited' or '0' evaluate as no permission being set.

    Post Install Instructions
    Add 'svg' file extension to the list of supported to allow svg files to be uploaded.
  • Version
    2.7.2 Stable Available Feb 28, 2026 · 0
    File size: 44.6 KB
    SHA-256: 8db94f9f0d5478f64045449a1c1d7818839c3c40178efb4bcc0ca7241efc4f72
    SHA-256 verified Package valid Compatibility checked Last verified:
    • Fix SVG attachment thumbnails not being generated for XF2.3.8+
    • Fix SVG attachment thumbnails did not generate canonical links when requested
    2.7.1 Stable Available Jan 4, 2026 · 0
    File size: 44.1 KB
    SHA-256: c61e40a82e78a0c6603dfac95339455aebd626acf1cf18371aa49c78acac8f11
    SHA-256 verified Package valid Compatibility checked Last verified:
    • Require StandardLib v1.22.0+
    • Fix drag&drop would use 'move' action instead of 'copy' for XF2.3
    • Fix drag&drop support for svg images
    • Add "Svg images skip pixel resize limit when generating thumbnails" option (default: false)
    2.6.7 Stable Available Nov 1, 2025 · 0
    File size: 42.3 KB
    SHA-256: 5367fbb869150aa7bdcce65284213e67c1d5c31de00788def90435261c8fcdf6
    SHA-256 verified Package valid Compatibility checked Last verified:
    A collection of improvements to XF's attachment system.
    • Byte-range support for resumable downloads
      • Primarily designed for partial content requests for streaming videos, but will work with any file
      • Dependant on the filesystem /internal_data being local, as the remote file system APIs do not easily support this feature
    • Improve drag&drop editor support.
      • Stock XenForo/Froala uses "move" which can result in unexpected content deletion.
      • Tint the active editor's boarder when dragging items over it, and show a file upload symbol over it.
    • Option to strip jpeg EXIF data
    • SVG support
    • Nginx's X-Accel-Redirect
    • New Permissions for forum/conversations (Respects global attachment size & count limits):
      • Attachment Size (kb).
      • Maximum Attachment Count.
    • Adds support for video stream via partial content requests
    SVG Support
    Support for SVG attachments to be displayable as normal images.

    Nginx X-Accel-Redirect (OPTIONAL)
    Enables the use of Nginx's X-Accel-Redirect header feature for attachment serving.

    This permits XenForo to-do validation and authentication, and offload the actual file serving to Nginx. This feature is not particularly well documented, but some info found here.

    After following Using DigitalOcean Spaces or Amazon S3 for file storage in XF 2.x attachments no longer show, you must follow the relevant FAQ entry!

    This addon assumes the /internal_data folder exists within the webroot, and you do not have a 'deny all;' statement but instead use 'internal;' to secure the internal_data folder.

    For example, XenForo is accessible from: /forum rather than then the webroot.

    The following must be added to config.php:
    Code:
    $config['internalDataUrl'] = '/forum/internal_data';

    Something similar to the nginx config may be required in your webserver:
    Code:
    Expand Collapse Copy
    location ^~ /forum/internal_data {
      internal;
      add_header Etag $upstream_http_etag;
      add_header X-Frame-Options SAMEORIGIN;
      add_header X-Content-Type-Options nosniff;
      alias /path/to/internal_data;
    }
    To ensure you match how XenForo serves files, add the following headers into your website config for the internal_data folder:
    Code:
    Expand Collapse Copy
      add_header Etag $upstream_http_etag;
      add_header X-Frame-Options SAMEORIGIN;
      add_header X-Content-Type-Options nosniff;

    New Permissions
    Permits per-forum or conversation attachment size and count limits.

    Respects the global forum wide attachment size/count limits, with per-usergroup settings allowing smaller values.

    Due to how XF integer permissions work, 'unlimited' or '0' evaluate as no permission being set.

    Post Install Instructions
    Add 'svg' file extension to the list of supported to allow svg files to be uploaded.
  • Discussion

    This resource has a discussion thread on the forum where you can ask questions, report issues, and talk with the author and other users.

    Join the discussion (3)

Resource information
Category XF 2.3 Addons
Author Staraddons
Date Nov 1, 2025
Latest version 2.7.2
SHA-256 8db94f9f0d5478f64045449a1c1d7818839c3c40178efb4bcc0ca7241efc4f72
Security
File integrity SHA-256 verified
SHA-256
8db94f9f0d5478f64045449a1c1d7818839c3c40178efb4bcc0ca7241efc4f72
How to verify this file
Statistics
Views 32
Downloads 0
Version 3
Developer
Staraddons
Resource author
More resources
Back
Top