Jump to content

teraßyte

Clients
  • Joined

Everything posted by teraßyte

  1. Even clicking a single checkbox myself to select a message takes 1~2 seconds before the action is done. On v4 it’s instant. Something is slowing down considerably the JavaScript in v5 (at least on Windows 10 + Chrome v132): Tooltips are laggy The editor lags behind if I type too fast (I mentioned it to @Matt in another topic and even posted a video) The JS to select rows based on their type is extremely slow, too Other JS-related things feel slow, too
  2. By valid HTML I mean that a DIV element MUST be inside <BODY>. You can’t add it before/after/inside the <HEAD> element, nor you can add it before/after the <BODY> element. You’re adding a <DIV> element before <HEAD> which results in this (extremely simplified) HTML below: <!DOCTYPE html> <html lang="en-US"> <div>Test</div> <head> <title>Testing a wrong DIV element</title> </head> <body> <div>This is a DIV inside the BODY element.</div> </body> </html>Try validating that HTML code and see you’ll get errors: https://validator.w3.org/#validate_by_input Then remove that first DIV above <HEAD> and you’ll see the validation is okay: <!DOCTYPE html> <html lang="en-US"> <!-- TEST DIV REMOVED --> <head> <title>Testing a wrong DIV element</title> </head> <body> <div>This is a DIV inside the BODY element.</div> </body> </html> Basically, the browser is trying to compensate/fix the HTML (but fails miserably) because you added an unexpected/wrong DIV element where it shouldn’t go.
  3. While viewing the messenger I opened the menu to “Select rows based on type” (checkbox above the messages list) and clicked the All option. The JS took ~6 seconds to run and select All checkboxes. I then clicked None to deselect everything. It took about ~5 seconds. I then loaded a second page of messages (50 total) and selecting again the All option took ~14 seconds. I clicked again None and it took ~12 seconds. A third page (75 messages) took ~27 seconds and I even received a warning from Chrome that the page was unresponsive and I could wait or close it. ( I clicked wait.) Same thing when deselecting all 75 messages: ~24 seconds and again Chrome warned me the page was unresponsive. Clearly, there’s some JS issue. It shouldn't take this long. The more messages are listed, the more time it takes.
  4. Yes, based on what you posted, this is most likely a bug introduced when adding the code to deprecate SendGrid.
  5. Because it’s not valid HTML. The bug here is not that the HTML breaks, but that it shouldn’t allow you to choose that option.
  6. Have you cleared the cache from ACP > Support after updating the setting manually in the database?
  7. You really shouldn’t add HTML before or after the <head> tag, nor <body> for that matter. Only inside them.
  8. SendGrid integration is being deprecated, at least I saw some code changes that indicate that in 4.7.20 Beta 3: public static function isAvailable() { if( Settings::i()->sendgrid_deprecated ) { return FALSE; } return TRUE; } However, it should still show for those who had it configured: /** * Show Sendgrid for those that have it configured * * @return bool|array If returns TRUE, upgrader will proceed to next step. If it returns any other value, it will set this as the value of the 'extra' GET parameter and rerun this step (useful for loops) */ public function step2() { if( \IPS\Settings::i()->sendgrid_api_key ) { Settings::i()->changeValues( [ 'sendgrid_deprecated' => 0 ] ); } return TRUE; }
  9. Speaking of MariaDB only, I know a client updated from 10.3 to 10.6 and saw noticeable improvements.
  10. In case it matters, it’s Chrome v132 on Windows 10.
  11. I noticed that sometimes the browser tab gets a (X) number in the title because there are new notifications, but when I open the tab itself the notifications icon doesn’t display any count. Only after I refresh the page the count properly appears on the bell icon. Most likely the HTML for the notification icon changed at some point but the JS to update the count was not updated with the new element. Just a guess, though.
  12. If you don’t want to use the visual language editor, you can edit/translate the name from the ACP instead:
  13. Was the MySQL 8 configuration the same as MariaDB? If the configuration values are different, it’s possible that MySQL 8 was simply using non-optimized values. I know some of my clients switched from MariaDB to MySQL and their sites were faster overall. However, their configuration was also tuned by expert server administrators. 🤷‍♂️
  14. Yeah. The red/green backgrounds appear on page load, but then some JS takes over and removes them. I guess it’s related to the new Monaco change for the code boxes: 🤔 #3189: Use Monaco editor for code boxes
  15. I entered this content in the editor: "Hello" 'world'! The editor however converts the single/double quotes to: “Hello” ‘world’! It shouldn’t replace the text I type. At least it seems the replacement is not done inside code boxes.
  16. I used the “mark all content as read” to get rid of the items for now.
  17. INT: ~2 GB (signed column) or ~4 GB (unsigned column). BIGINT: ~9.2 EB (signed column) or ~18.4 EB (unsigned column). You’re good for a while. 😹
  18. @Matt Previously I also posted a bug report about the tooltips being laggy. Could it be the same root issue somehow? 🙄
  19. Lots of antivirus install browser extensions nowadays. Maybe that’s what clearing his cookies after the browser is closed.
  20. After the old beta v5 bug tracker was hidden a lot of old comments I made in those bug reports are now showing up in my unread stream: https://invisioncommunity.com/discover/unread/ When I click to view anything I get properly an error that I can’t access it, though: Oops! We could not locate the item you are trying to view. Error code: 2S136/V The items shown in it are also from other users, not just mine. This leaves me with an unread stream with a huge amount of content that I cannot mark as read or remove. Seems like there’s a bug with updating the search index permissions when the club category was hidden/moved.
  21. I’ve always thought this extra white area below the save button in the account settings is rather “ugly”: I’d prefer to see the white space above it and shift the Save button at the bottom instead. Other areas (like Display Name) have the same layout issue.
  22. As long as I remember what I already reported… 😹
  23. There are 2 different bugs for this function. Here are the steps to reproduce the issue: Create a new topic WITHOUT following it. Now reply to the topic after enabling the Follow topic option At this point, you’ll notice 2 different things depending on whether auto-merge is enabled or not: If auto-merge kicks in => The comment is merged into the previous post, but the FOLLOW status is NOT updated. Even if the replies are merged, it should still add me to the topic’s following list. If auto-merge is disabled (or doesn’t kick in) => The comment is posted correctly, and I am added to the following list for the topic, but the follow button at the top of the page doesn’t update to show the change like in v4. I must refresh the page to verify I am indeed following the topic now.
  24. We can still toggle forums as long as IPS enables the option to customize the views in the user control panel. I’d love to change it too back to table view. 😋 That said, where should we post bug reports now? The custom IC5 Bugs database has been hidden. Should we use the usual Technical Problems forum?