Chris D XenForo developer Staff member Dec 28, 2018 #2 That's a global XF limit, it's in "Attachment options". Upvote 0 Downvote
mcatze Well-known member Dec 28, 2018 #3 But i set in attachment options 0=disabled, also the permissions. Upvote 0 Downvote
Chris D XenForo developer Staff member Dec 28, 2018 #4 Ah, it's hard coded at 100. If it's something you need to do temporarily then you can change the code in src/addons/XFMG/Entity/Category.php and src/addons/XFMG/Entity/Album.php. Find and edit: PHP: 'count' => 100 Increasing it much beyond this may enable you to hit PHP limits including post_max_size and max_input_vars (more likely the latter). Upvote 0 Downvote
Ah, it's hard coded at 100. If it's something you need to do temporarily then you can change the code in src/addons/XFMG/Entity/Category.php and src/addons/XFMG/Entity/Album.php. Find and edit: PHP: 'count' => 100 Increasing it much beyond this may enable you to hit PHP limits including post_max_size and max_input_vars (more likely the latter).
mcatze Well-known member Dec 28, 2018 #5 Thanks for the hint, is it planned to made it as option? Upvote 0 Downvote