Everything posted by teraßyte
-
Custom ad locations gone
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. 🤷♂️
-
[Template forums/front/topics/topic is throwing an error.] when viewing as Guest
I figured out the issue, but only IPS can fix it. I've provided more details to @fanfictalk.
-
Error when trying to convert
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.
-
Error Upgrade upg_107795\Upgrade
@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
-
Adding inline code inside the editor displays a separate line
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.
-
Custom date format...strftime deprecated
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.
-
Can you embed instagram videos?
I think they require a business account verification for embeds to work now? I've given up on anything FB-related years ago. 🙄
-
More option in the Topic Feed Widget - show last author instead of thread starter
Yeah. The topic feed widget has always shown the topic starter. I even have a modification for v4 to show the last poster instead.
-
[BUG 4.7.20] Restoring a non-searchable deleted item throws a TypeError exception
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.
-
Wrong tooltip count for recently browsing block
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.
-
Wrong tooltip count for recently browsing block
The tooltip count in the Recently Browsing block is wrong by 1. I assume it doesn't include the logged-in member:
-
v5 minor UI bugs
To report v5 bugs use the tracker => https://invisioncommunity.com/invision-community-5-bug-tracker/
-
Notification error for individual member
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.
-
Gallery - Invision 5 - This application is out of date and cannot be enabled until it is upgraded.
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:
-
[Template forums/front/topics/topic is throwing an error.] when viewing as Guest
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.
-
Site Down After Attempting Upgrade to 5.0.1
The error Access denied for user makes me think it's a MySQL-related issue. Your database user can't access the database.
-
Invision Community 5.0.0 Released
They moved the option in the Accounts Settings page for v5: https://invisioncommunity.com/settings/links/
-
Codebox language menu hidden behind other codeboxes
Add 2 codeboxes in the editor and then try opening the language menu of the first one. This is what you'll see:
-
Call to undefined method IPS\arcade\extensions\core\GroupForm\arcade::canDelete() (0)
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.
-
Cannot add a quote after selecting an image.
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.
-
Cannot add a quote after selecting an image.
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 🙄
-
Turn off emoji in IPS5
Nope. Chrome in Windows here (v133). I see a delay of 6+ seconds opening the Emoji & Icons menu.
-
Time to Clean conf_global
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.
-
Adding css via LoaderAbstract
Strange indeed. 🤔
-
Text Align
Sounds like a bug to me. 🤔