[AlisonW]Yes, seeing that discussion pass by when catching up prompted my thought. Interesting that IP address is banned as my IPs are more fixed than the domains which may point out them!
techlifeweb[snarfed]: I'll check with my host about the 406 error Bridgy is getting with techlifeweb.com. What's odd to me is that Bridgy, Twitter and my site work fine. Instagram, not so much.
[snarfed][techlifeweb] feel free to reconnect your bridgy twitter, just click the pause button on that page. login should work fine since it's different than Instagram, but it'll be a good test to see if webmentions etc work
[dmitshur]when authenticating a user via OAuth 2.0, you generally "authenticate" first, and learn information about the user second. then you have an authenticated user.
[dmitshur]when authenticating a user via IndieAuth, you _first_ discover information about the user, before they're authenticated. then you authenticate them. finally you have an authenticated user.
aaronpkif you wanted to avoid that you'd have to have some initial step that asks the user what server they're on, and then that starts to look similar to IndieAuth
Loqi[Chris Aldrich] It’s been a while since I’ve used it, but I notice that Mastodon Autopost, a WordPress plugin, wants to include titles now (but cleverly ignores them if they don’t exist), but will include an excerpt as the body. It also now allows for hashtags...
techlifewebFor the sake of future searches, these where the mod_security ids they had to whitelist for brid.gy to stop returning a 406: 340157, 9009999,380122 and 340016
techlifewebI enter my URL on https://brid.gy/instagram/start?feature=listen&x=126&y=23&scope= and I get a page saying "An appropriate representation of the requested resource could not be found on this server. This error was generated by Mod_Security." not too much to go on other than Mod_Security issue.
krychu joined the channel; techlifeweb left the channel
KartikPrabhu, gRegorLove, jenelizabeth, superjen96, DigDug, techlifeweb, wagle, [snarfed], [Michael_Beckwit and [dmitshur] joined the channel; nickodd and techlifeweb left the channel
dmcweeneyDoes anyone know how I would remove sidebars from this page: https://drewmcweeney.com/category/freeyourmindblog/ ... I removed the sidebars for the rest of my site but this category page has sidebars. I used CSS to get rid of all the sidebars on my website so is the CSS the same? And if so, would I need a page ID to do it? How do I access a page ID from a category page?
dmcweeneyMy CSS that I generated to remove sidebars is (this is an example for one page): /* Remove sidebars from page "Electronic Music" */ .page-id-4048 sidebar.s1.collapsed, .page-id-4048 .sidebar.s1.collapsed, .single-post .sidebar.s1.collapsed { display: none; } .page-id-4048 sidebar.s2.collapsed, .page-id-4048 .sidebar.s2.collapsed, .single-post .sidebar.s2.collapsed { display: none; }
dmcweeneyHumean theme - If you go to this link: drewmcweeney.com/category/freeyourmindblog ... you will see the two sidebars, yet all other pages don't have the two sidebars
chrisaldrichwhile you're using display: none, the data still all appears, it just doesn't render. You'd probably be better off removing the code that renders the sidebars altogether.