DanielGordonIT

Results 5 comments of DanielGordonIT

Most of the embed stuff you see in link embedding on chat platforms is via the [OpenGraph standard](https://ogp.me/) - which you can do via the "custom head" setting in the...

Also - if your BookStack instance does not have guest access, and/or is hosted internally (i.e. not able to be hit from the wider internet), the OpenGraph tags won't help,...

When using the default PDF export package, you can modify your `php-local.ini` (`/config/php/php-local.ini` or `bookstack_app_data/php/php_local.ini` in the lscr.io docker image) to increase the timeout. Adding a `max_execution_time = 300` fixed...

I'd suggest the theme system, but I don't think the [webhook event](https://github.com/BookStackApp/BookStack/blob/f937bf3abb44db21fbada3180e66bfa27dc3f7da/app/Activity/DispatchWebhookJob.php#L37) covers it: ```php public function __construct(Webhook $webhook, string $event, Loggable|string $detail) { $this->webhook = $webhook; $this->initiator = user();...

You could use the API endpoint for pages, `https://your.bookstack.url/api/pages/{id}`, and use a PUT request to move the page from a hidden "staging" book to a publicly accessible book. The timing...