Subarist
Subarist's Comments
-
- Support
- Embedding a Video Test
-
- Development
- How Can We Generate RSS Feeds?
In reply to TobyToby Waterhole FounderJul 17, 2024 Waterhole exposes an RSS feed for all posts (as you've linked), and each channel (e.g. https://waterhole.dev/community/channels/blog/posts.rss). In the future we may add feeds for comments/specific po...Oh, my bad.
The posts.rss returning a 404 error was because of a misconfiguration in Nginx.
It's fixed now. Thanks!Also, I set UTF-8 in RssController.php, and everything is working great.
return response($feed->export('rss'), 200, ['Content-Type' => 'application/rss+xml; charset=UTF-8']);
-
- Development
- Storage Options (s3 etc)
Ah, I see now. I always thought there was something wrong with my setup on Minio S3.
-
In reply to riegel02riegel02
Apr 15, 2024 Adding any external link with ending .mp4 will automatically make it embed, but it does not respect the size of the message.I'm currently fixing this issue with CSS:
video { max-width: 640px; margin-left: auto; margin-right: auto; display: block; }
To adapt to your layout, perhaps simply use width: 100%.
-
- Blog
- Waterhole 0.3
In reply to TobyToby Waterhole FounderNov 9, 2023 No, unfortunately I've not been able to reproduce the issue, and it was never submitted on GitHub. If you're experiencing it too, would greatly appreciate if you can provide further information in a b...The addition of a comment button has been done in V0.3, thanks @Toby .
However, on the mobile, I still believe that placing the comment button within a dropdown menu or in a fixed location is necessary.
In discussions with multiple pages, it's truly challenging to scroll all the way down to the bottom to find the "Write a comment..." section. -
Update Note:
In some non-EN language environments, Accept-Language may not be correctly detected.
If you need to change the default language, try modify the following code./Middleware/Localize.php
// Retrieve the user's locale preference, either from the user model if // logged in, or from the session or browser preference otherwise. if ($user) { $locale = $user->preferredLocale(); } else { $locale = session(static::SESSION_KEY, $request->getPreferredLanguage($locales)); }
remove: $request->getPreferredLanguage($locales)
// Retrieve the user's locale preference, either from the user model if // logged in, or from the session or browser preference otherwise. if ($user) { $locale = $user->preferredLocale(); } else { $locale = session(static::SESSION_KEY); }
-
- Showcase
- Blank Page Cafe
In reply to RenéRenéAug 29, 2023 Indeed! It's really a great fit for us :)I recently tried using blank.page in some situations, and surprisingly, it's very convenient.
So now, I've added it to my resource arsenal.
-
- Showcase
- Blank Page Cafe
The simple waterhole style surprisingly complements the blank.page very well.
-
- Lounge
- Introduce Yourself 👋
In reply to MadWayMadWayAug 2, 2023 Maybe notGreat, now I finally see the legendary EsoTalk
-
In reply to ManuelManuel
Jun 9, 2023 Thanks for the suggestion @Subarist! I saw your previous post, but this relates to a setup with Apache, no?Sorry for my limited English expression. I am not very familiar with Apache or Nginx, and I just threw your question at ChatGPT.
Then it told me that, first, you need to check the folder permissions:Please make sure you have set the correct folder permissions on the server. You can use the following commands to change the folder permissions:
sudo chown -R www-data:www-data /home/forge/waterhole.kostka.studio/storage sudo chown -R www-data:www-data /home/forge/waterhole.kostka.studio/public sudo chmod -R 755 /home/forge/waterhole.kostka.studio/storage sudo chmod -R 755 /home/forge/waterhole.kostka.studio/public
-
https://waterhole.dev/community/posts/40-css-and-js-not-rendering
try this.
The directory permissions should be set to "www" as the owner, rather than root.
-
In reply to TobyToby Waterhole Founder
Jun 4, 2023 > Can we specify a default language? In most cases you shouldn't need to, since Waterhole defaults to the closest matching preferred language to the Accept-Language header sent by the browser. If the...After several days of testing and interaction with other site admins, we suggest that it is still necessary to have a "default" language parameter instead of removing the "EN" language option.
In most non-English operating systems, browsers cannot accurately determine the language automatically.
This situation is similar to some flrum extensions where, in our usage environment, the current language cannot be automatically detected.Alternatively, there are scenarios where users are accustomed to operating in an English environment but visit a new discussion forum where they would like to see the familiar language menu directly.
Furthermore, English is the primary international language and it serves a necessary purpose.Therefore, if circumstances permit, having a default language option would be a popular choice.
-
- Support
- UTF-8 display Issues
In reply to TobyToby Waterhole FounderJun 4, 2023 Thanks for these reports @Subarist, they will be fixed in the next release. In the future, it would be a great help if you could post bug reports to the GitHub issue tracker, it would be a great help if you could post bug reports to the GitHub issue tracker
Sure, I just need to learn how to use GitHub.
I have tested the updated source code for fixing UTF-8.
highlighting/username issue has been resolved.
Thank you. -
Answer I know why we misunderstood...
It's so small that I didn't notice it
especially when the navi bar is a bit long...Can we specify a default language?
-
Search function reported an error---fixed
summary display error --- fixed
Case closed after upgrade to 0.2.0
Hi, Sir,
For your reference,
On my test forum, I added the following code in the "WaterholeServiceProvider.php":
This allows for quick and simple embedding of the above media platforms.