Seeker-Smith
Well-known member
How can I override the hard coded max 50 so I can upload 200 at a time? It use to be 100 which is not enough.
You use to be able to do it as per Chris's instructions,
You use to be able to do it as per Chris's instructions,
It's hard coded to 100 but I can't immediately recall why other than there's a fairly high chance that you'll run into potential server limits if it's higher. You'll potentially hit things like post_max_size, max_input_vars limits in PHP, you may exceed max_execution_time or experience issues with memory or CPU.
If this is just temporary, you can try manually increasing it by modifying the following files:
And finding:
And replacing with:
If this is just temporary, you can try manually increasing it by modifying the following files:
- src/addons/XFMG/Entity/Album.php
- src/addons/XFMG/Entity/Category.php
And finding:
PHP:
'count' => 100
And replacing with:
PHP:
'count' => 200