[help] [img] [forum]
[Catalog] · [Search] [News]
Post thread
Name
Email
Subject
Message
CAPTCHA CAPTCHA Challenge Click to refresh.
File
Password For post deletion.
Submit  
  • Helpful information is available in the visitor guide. Currently 27 unique user posts.
  • Supported file types are JPG, PNG and GIF.
  • Maximum file size allowed is 2MB.
  • Images greater than 250x250 will be thumbnailed.
  • Supported BBCode tags are b, code, i, pre, sjis, spoiler, s and u.

 [Reply]
could there be an option for the board page to auto update once a thread has been posted?


Thanks for the suggestion. Tracking issue:

https://codeberg.org/tslocum/sriracha/issues/124


>>66(OP)
This feature is supported starting with Sriracha v1.9.6. Only imageboard index pages may be auto-refreshed.


 [Reply]
>https://codeberg.org/tslocum/sriracha/issues/122
well i'd like to see support for vichan since it reached its end of life and has a zero day apparently, but to reach that sriracha probably should have feature parity like flags (which i hate) and ids (not post numbers more like what's in 4chan /pol/ which i hate for example) could be added


>>72
I think this covers everything, I also made a bumplocked and cyclical thread:

https://files.catbox.moe/vlerum.zip

If there's still anything missing, please let me know.
Also, probably doesn't matter, but backlinks/reflinks do not show up on the post that's being referenced by default in vichan (it relies on loading a js script in the config), but I'm assuming this shouldn't change anything in the database itself. The database dump was made without this script being loaded.


>>75
Thanks. I've just tested importing posts from the recent dump and things look good. Support for importing vichan posts is now ready for testing.

Until Sriracha v1.9.5 is released, you can try this feature by downloading the latest source code of the main branch and building Sriracha yourself. I've updated the manual to include instructions for importing vichan posts.


Sriracha v1.9.5 is now available, featuring support for importing posts from vichan.


 [Reply]
for replying to the thread poster, could there be an (OP) at the end of it?


Thanks for the suggestion. Do you mean at the end of reflinks? Such as >>73(OP) being rendered as ">>73(OP)(OP)"?


>>74
yes


>>76
This feature will arrive in Sriracha v1.9.5.


1785094725561.png
 [Reply]
Hi,

I'm not quite sure what's causing this behavior, or if it's just something on my end (I suspect it is), but these aren't supposed to show up on desktop view, are they?

I tried clearing cache/cookies, tried Firefox, Chromium, same thing happens.
I assumed this was caused by me being on Linux, because everything looks normal on Windows (no long bar, post hover activates only when you hover over the number), but I've spinned up a linux VM and it's not happening there as well.
The weirdest thing it didn't use to happen on my machine either, when it suddenly started happening after I reloaded a Sriracha instance and now it's happening everywhere.

When looking at the html It seems I'm triggering the mobile view version of the backlinks? I really have no idea why because it happens on different browsers with cache/cookies completely wiped and no extensions installed at all, only user agents should trigger these to appear shouldn't they? Is there anything else that could cause this behavior?

Html I'm seeing:
<a href="/help/res/52.html#54" class="refreply touchreflink" refid="54">&gt;&gt;54</a>


>>60
Sriracha v1.9.0 is now available, which includes the mobile input changes I mentioned. Please refresh your page cache by pressing Shift+Refresh or by long-pressing the refresh button, then give the mobile reflink previews another try. Page scrolling should work now, even when a reflink is tapped.


1785284114399.png
>>61
Hi,

Reflinks are present and I'm still getting
Coarse pointer: false

I figured out what's causing it though, it's only happening when using Moonlight to remote into my machine, it seems Moonlight creates a virtual touch device which is what I'm guessing is triggering this, so it's not really an issue with Sriracha.

>>63
Thanks, scrolling is much less disruptive now.


>>64
Once v1.9.1 is released, Sriracha will rely on coarse pointer detection instead, which should resolve the issue you mentioned. I have also deployed the fix here just now.


 [Reply]
could you make admin red and mod purple?


Making the capcode colors customizable will require some changes, which I will include in the next release. Tracking issue:

https://codeberg.org/tslocum/sriracha/issues/119


>>48
thx <3


>>47(OP)
As of Sriracha v1.9.0 this feature is now available. The default capcode colors are now set in global.css, and may be overridden by modifying that file or by adding a custom stylesheet.


 [Reply]
Hi,

On the latest release of Sriracha, whenever I try creating a board I get the following DB error:
ul 25 01:43:48 [128992]: 2026/07/25 01:43:48 SRIRACHA ENCOUNTERED A FATAL DATABASE ERROR!
Jul 25 01:43:48 [128992]: 2026/07/25 01:43:48 ERROR CODE: 42601
Jul 25 01:43:48 [128992]: 2026/07/25 01:43:48 ERROR MESSAGE: INSERT has more expressions than target columns
Jul 25 01:43:48 [128992]: 2026/07/25 01:43:48 failed to insert board: ERROR: INSERT has more expressions than target columns (SQLSTATE 42601)

Deleted the database but still the same issue.
Would've posted an issue on codeberg but it seems like the site is having issues right now and is inaccessible at least for me.


Thanks for reporting this. I have just released Sriracha v1.8.9 with a fix for this issue.


>>50
It's working now, thanks for such a quick fix!


 [Reply]
i have just have trouble with compiling the plugin that's all


>>53
the issue i have is that my plugin compiles in almalinux (which is my admin panel version) but my sriracha container is in alpine


sriracha | 2026/07/25 18:14:45 failed to load plugins: failed to load plugin /plugins/sports.so: plugin.Open("/plugins/sports.so"): Error loading shared library libresolv.so.2: No such file or directory (needed by /plugins/sports.so)


>>54
Sriracha supports building and loading custom plugins when running in a Docker container, but this functionality was not well documented. I have just updated the manual with detailed instructions, scroll past "Native" to the new "Docker" section:

https://codeberg.org/tslocum/sriracha/src/branch/main/MANUAL.md#using-plugins


 [Reply]
instead of putting the file size in bytes could you use mb instead?


Thanks for the suggestion. Tracking issue:

https://codeberg.org/tslocum/sriracha/issues/118


 [Reply]
Sup, I remember reading about sriracha about two years ago and how it replaced per-board post numbers with a single global post count.

How difficult would it be to recreate more standard imageboard behavior?
Postnums are used in DB and in all other parts of the code, so not sure if this is even possible without some kind refactor


>>41(OP)
While the alternative is not entirely difficult to implement, I chose a single auto-increment ID for a few reasons. PostgreSQL does not natively support multi-column auto-increment IDs, any table and queries referencing a post would need to reference two columns instead of one, and moving threads between boards would require renumbering posts. Using a single post table with a single ID column greatly simplifies the application and the database schema. I understand the alternative is desirable for imageboards, and things may change in the future, but right now I don't see the performance and complexity costs as worth it.