Jump to content

teraßyte

Clients
  • Joined

Everything posted by teraßyte

  1. teraßyte posted a post in a topic in Feedback
    You can still add custom ad locations but can't edit the templates directly to include them. You need to make an application, use the core/AdvertisementLocations extension to define new locations, and add template hooks for those locations: It's a bit of a roundabout way compared to v4, but it's still possible. Of course, it will work only if the template hook points are available for the locations you need. 🤷‍♂️
  2. I figured out the issue, but only IPS can fix it. I've provided more details to @fanfictalk.
  3. If you don't want to wait until the converters are ready, your best option is to convert using version 4.7.20, then upgrade to v5.
  4. @Jim M It's a bug. The file was included in 5.0.1 after being imported from v4, but the class was not renamed to remove the underscore (which is not used in v5): /** * 4.7.20 Beta 1 Upgrade Code */ class _Upgrade
  5. If you add some inline code inside the editor the code is shown in a separate new line (block display CSS?) and looks like a normal codebox. After submitting the content the inline content is displayed inline correctly, though. Windows 10, Chrome v133.
  6. You can control the order of the sprintf replacements. Try changing the language string from: %s %s, %sto: %2$s %1$s, %3$s Adding the number followed by the dollar symbol, you can reorder things. The normal output is: Month Day Year So moving %2$s at the start, it means the day is inserted first.
  7. I think they require a business account verification for embeds to work now? I've given up on anything FB-related years ago. 🙄
  8. Yeah. The topic feed widget has always shown the topic starter. I even have a modification for v4 to show the last poster instead.
  9. I have a custom application with an Item class that doesn't implement the \IPS\Content\Searchable interface since they are not supposed to be available in search: class _Item extends \IPS\Content\Item implements \IPS\Content\Hideable, \IPS\Content\Shareable, \IPS\Content\Embeddable, \IPS\Content\MetaData I was testing the restore function for deleted content in the Moderator CP, and I received this error below when I tried to restore one of the items: TypeError thrown with message "IPS\Content\Search\Mysql\_Index::index(): Argument #1 ($object) must be of type IPS\Content\Searchable, IPS\customapp\Item given, called in \system\Content\Content.php on line 1301" Stacktrace: #8 TypeError in \system\Content\Search\Mysql\Index.php:55 #7 IPS\Content\Search\Mysql\_Index:index in \system\Content\Content.php:1301 #6 IPS\_Content:restore in \system\Content\Content.php:1113 #5 IPS\_Content:modAction in \init.php:947 #4 IPS\core\extensions\core\ModCp\_Deleted:modaction in \applications\core\extensions\core\ModCp\Deleted.php:50 #3 IPS\core\extensions\core\ModCp\_Deleted:manage in \applications\core\modules\front\modcp\modcp.php:114 #2 IPS\core\modules\front\modcp\_modcp:manage in \system\Dispatcher\Controller.php:118 #1 IPS\Dispatcher\_Controller:execute in \system\Dispatcher\Dispatcher.php:153 #0 IPS\_Dispatcher:run in \init.php:947 The \IPS\Content::restore() function should not try to index the item if the interface is not implemented.
  10. The tooltip has also that 1-pixel space between the bubble and the arrow. I've been meaning to report that for a while. 🙄 Windows 10/Chrome v133.
  11. The tooltip count in the Recently Browsing block is wrong by 1. I assume it doesn't include the logged-in member:
  12. teraßyte posted a post in a topic in Feedback
    To report v5 bugs use the tracker => https://invisioncommunity.com/invision-community-5-bug-tracker/
  13. Did you install a modification to add reactions in PMs at some point? It's coming from that. The messenger by default doesn't have reactions enabled.
  14. Forget about the TAR file, it's not available for IPS applications. Instead, you can update the application through a manual upgrade. Download the latest package from your client area, upload all the files to your server, and then go to /admin/upgrade. That will detect the gallery upgrade and perform it. IPS Guide:
  15. That list doesn't help much, unfortunately. Can you copy/paste on of the errors? You an click on the search icon to view the single logs.
  16. The error Access denied for user makes me think it's a MySQL-related issue. Your database user can't access the database.
  17. They moved the option in the Accounts Settings page for v5: https://invisioncommunity.com/settings/links/
  18. Add 2 codeboxes in the editor and then try opening the language menu of the first one. This is what you'll see:
  19. 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.
  20. 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.
  21. 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 🙄
  22. Nope. Chrome in Windows here (v133). I see a delay of 6+ seconds opening the Emoji & Icons menu.
  23. 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.
  24. Strange indeed. 🤔
  25. teraßyte posted a post in a topic in Technical Problems
    Sounds like a bug to me. 🤔