Everything posted by teraßyte
-
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. 🤔
-
Adding css via LoaderAbstract
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?
-
Adding css via LoaderAbstract
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.
-
Adding css via LoaderAbstract
What is the code you're currently using?
-
How do I enable the dark mode and light mode?
The default theme in 4.x doesn't support dark mode. Only some custom themes have it.
-
Webp upload test
AVIF support is available in the new 5.0.0 version released a few days ago.
-
EX1364 Error – Cannot Login to Admin Panel or Use Forum
The core_log table is there in the 4th screenshot.
-
EX1364 Error – Cannot Login to Admin Panel or Use Forum
What exact MySQL version? Also, which PHP version?
-
Mark site read
Yeah, I used that functionality a lot myself on the forum index. 😔
-
use IPS\gallery\modules\front\gallery\submit;
What kind of restrictions do you want to implement exactly? Maybe there's another way. 🙄
- Smilies
-
use IPS\gallery\modules\front\gallery\submit;
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.
-
use IPS\gallery\modules\front\gallery\submit;
Which version are you using? You can extend it through hooks on v4. It's impossible on v5 since hooks were removed.
-
[SUGGESTION] Please add ability to modify user Profile Image
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.
- Version 5
-
Gallery Images stopped fully filling in the grid
You can restore the previous behavior by adding this custom CSS: :is(.ipsFigure--contain, .ipsMasonry) .ipsFigure__main > :is(video, img) { object-fit: fill; }
-
Maria DB for IC 5
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.