Jump to content

teraßyte

Clients
  • Joined

  • Last visited

Everything posted by teraßyte

  1. They moved the option in the Accounts Settings page for v5: https://invisioncommunity.com/settings/links/
  2. Add 2 codeboxes in the editor and then try opening the language menu of the first one. This is what you'll see:
  3. I believe they removed the code that checks if the function exists before calling it. Since all new extensions are supposed to extent the base abstract class which will contain all empty functions regardless.
  4. The only way to add an image inside a quote in v5 is to first remember to add the quote, and then insert the image inside it.
  5. On v4 I used to add an image in the editor, select it, and then click the quote button to wrap it in a quote. On v5 I can't do it anymore, after I select the image the only editor buttons enabled are: Link GIF (???) More > Text Align 🙄
  6. Nope. Chrome in Windows here (v133). I see a delay of 6+ seconds opening the Emoji & Icons menu.
  7. This is the default conf_global for a fresh 4.7 install: <?php $INFO = array ( 'sql_host' => 'localhost', 'sql_database' => '12345678', 'sql_user' => '12345678', 'sql_pass' => '12345678@', 'sql_tbl_prefix' => '12345678', 'sql_utf8mb4' => true, 'board_start' => 12345678, 'installed' => true, 'base_url' => 'https://12345678.com/', 'guest_group' => 2, 'member_group' => 3, 'admin_group' => 4, ); I used your same values for the entries so you can compare.
  8. Strange indeed. 🤔
  9. teraßyte posted a post in a topic in Technical Problems
    Sounds like a bug to me. 🤔
  10. With the checkLocation line it shouldn't show everywhere. 🤔 On what page(s) do you want to include the CSS file and how did you edit the line to match?
  11. This is the code I use in one of my apps, I've adjusted it to use the values you posted above: /** * Additional CSS files to load * * @return array<string|Url> */ public function css(): array { $cssFiles = []; # Only add to the frontend, and for a specific app if ( \IPS\Dispatcher::checkLocation( 'front', 'galleryai' ) ) { $cssFiles[] = \IPS\Theme::i()->css( 'custom.css', 'galleryai', 'front' ); } return $cssFiles; } This will only add the CSS file inside the galleryai app pages. If you want it inside another application, for example, gallery, you must change the IF check to: if ( \IPS\Dispatcher::checkLocation( 'front', 'gallery' ) )And so on. You can also further specify a module and controller value in the checkLocation() call.
  12. What is the code you're currently using?
  13. The default theme in 4.x doesn't support dark mode. Only some custom themes have it.
  14. AVIF support is available in the new 5.0.0 version released a few days ago.
  15. The core_log table is there in the 4th screenshot.
  16. What exact MySQL version? Also, which PHP version?
  17. teraßyte posted a post in a topic in Feedback
    Yeah, I used that functionality a lot myself on the forum index. 😔
  18. What kind of restrictions do you want to implement exactly? Maybe there's another way. 🙄
  19. teraßyte posted a post in a topic in Feedback
    It's a different issue. Typing :) used to auto-convert it to 🙂 in v4, but it doesn't happen anymore with v5.
  20. You can edit the category permissions to control who can upload images. You can use secondary groups to restrict it to only some members. Other than that, not sure.
  21. Which version are you using? You can extend it through hooks on v4. It's impossible on v5 since hooks were removed.
  22. Yep. It is possible in 4.x but it was most likely left out while shuffling things around for v5. The option in 4.x is a button on the photo, while it's been moved to a menu for 5.x.
  23. teraßyte posted a post in a topic in Technical Problems
    From the client area:
  24. You can restore the previous behavior by adding this custom CSS: :is(.ipsFigure--contain, .ipsMasonry) .ipsFigure__main > :is(video, img) { object-fit: fill; }
  25. I had a client encounter slowness issues using MariaDB 10.3. Updating to 10.11 solved the problem. I am using version 10.11.5 locally without issues, but I know of others using version 11.x without problems. too. I don't recommend using anything lower than 10.11 though.