digitalpoint
Well-known member
So XF2 looks pretty good, and has a lot of stuff that I've had to hack onto XF1 (more than I expected, so that's good).
Now... things that I've suggested in the past for XenForo, and looks like they are going to be the biggest issues I face with XenForo 2 (most have to do with scaling XenForo beyond single server setups):
- Retina graphics support
- Emoji support (in this day and age, I'd even argue you could get rid of the traditional smilies and instead of parsing things like typed smilies into images, convert them into their respective emoji)
- Fontawesome usage for things like editor buttons
- Get rid of image based gradients (haven't looked that close, but it looks like gradients aren't used... network shows no gradient images loading either way). If you must use gradients, use CSS gradients.
- Improved mobile navigation
- Custom thread fields (going to be interesting to see how it handles moving threads between forums with different custom field requirements... this was a pain in the ass in our XF1 implementation).
- CSS transitions/animations
- Payment framework (huge thing for me)
- HTML5 uploader
- Prism based syntax highligher
- AJAX form redirect options if triggered from overlay (what also would be nice is if you could replace an overlay with another overlay as a built-in function like how like how the spam cleaner system works).
Now... things that I've suggested in the past for XenForo, and looks like they are going to be the biggest issues I face with XenForo 2 (most have to do with scaling XenForo beyond single server setups):
- Make a file storage handler - default it to the server file system for things written as files (for example avatars, attachments and sitemaps), but at least abstract it out so it can be changed. This alone makes XenForo not well suited for a multiple web server environment. I have XenForo 1.x addons that move avatars, attachments and sitemaps out of the local file system, and it's an absolute must have for multi-web server setups.
- Don't force InnoDB storage engine when creating tables - Maybe a manual override in the config file (even something like `$config['db']['forceStorageEngine'] = 'ndbcluster';` would be soooo nice)? In my case, I use ndbcluster storage engine for everything, and it's a pain in the ass when you do an upgrade to force all database requests to go through a single DB server so that you can then go and manually change the storage engine after new tables are created. And then switch everything back to being able to hit any database server (my setup consists of 8 web servers, with the database server always being "localhost"... but that doesn't work with InnoDB because InnoDB normally only exists in one physical server.
- Make a setting for how tables are truncated - There is some more info on it here, but it basically would be a toggle between using "TRUNCATE TABLE" and "DELETE FROM". The latter won't hang if a hot backup is going on. A simple singular helper method you pass the table name to would be useful.
- Show hostname in Server Error Log - Tracking down an issue sometimes is related to a specific physical server in a multi-server setup.