The Wakaba and Kareha support thread, part 3 (535)

1 Name: !WAHa.06x36 : 2011-01-07 09:57 ID:eLRTX7Vk [Del]

This thread is for all your simple questions about installing and running Wakaba or Kareha, that just require quick answers. Please don't create new threads for issues like that, post them in here instead.

Before posting, check that the question has not already been answered in this thread, or in the previous two threads:

Also check the documentation: http://wakaba.c3.cx/docs/docs.html

There is also a setup guide by Anon: http://wiki.iiichan.net/index.php?title=Wakaba_and_Kareha_Setup_Guide

Questions about "500 Internal Server Errors" go in this thread: http://wakaba.c3.cx/sup/kareha.pl/1109033191/

431 Name: Anonymous : 2014-01-21 09:40 ID:+yM64RIQ [Del]

besides writing a new .css, what do i have to do to use custom board look?

432 Name: Anonymous : 2014-01-21 20:06 ID:Heaven [Del]

>>431
In terms of what you HAVE to do that's about it, but you can do a lot more if you really want to.

433 Post deleted by user.

434 Name: Anonymous : 2014-02-04 20:52 ID:Heaven [Del]

I'm using waka_utils.pl in another project of mine and I was wondering how safe the templating system is for allowing (paid) users to write their own. If I remember correctly its possible to run code in a template, so I'm kind of wary about just allowing them to access the template system. Is there a way to make it a little more restrictive or am I better off just writing something myself?

435 Name: Anonymous : 2014-02-04 21:04 ID:Heaven [Del]

>>434
Okay I just tried looking through the compile_template function myself and I think this should take care of it.

if(!$safemode) {
if($closing) {
if($name eq 'if') { $code.='}' }
elsif($name eq 'loop') { $code.='$$_=$__ov{$_} for(keys %__ov);}}' }
}
else {
if($name eq 'var') { $code.='$res.=eval{'.$args.'};' }
elsif($name eq 'const') { my $const=eval $args; $const=~s/(['\\])/\\$1/g; $code.='$res.=\''.$const.'\';' }
elsif($name eq 'if') { $code.='if(eval{'.$args.'}){' }
elsif($name eq 'loop')
{ $code.='my $__a=eval{'.$args.'};if($__a){for(@$__a){my %__v=%{$_};my %__ov;for(keys %__v){$__ov{$_}=$$_;$$_=$__v{$_};}' }
}
}
else {
if(($name eq 'var') and ($args =~ /^\$[a-zA-Z]+$/)) {
$code .= '$res .= eval{' . $args . '};'
}
}

Any obvious gaping holes?

436 Name: Anonymous : 2014-02-04 21:32 ID:Heaven [Del]

>>435
The only obvious gaping hole I can think of is that you've basically just created an overcomplicated sprintf().

437 Name: Anonymous : 2014-02-04 23:15 ID:Heaven [Del]

>>436
Most of it is part of the templating system already in waka_utils.pl.

438 Name: Anonymous : 2014-02-07 16:05 ID:Heaven [Del]

>>427
please answer

439 Name: Anonymous : 2014-02-13 22:07 ID:OGXnEN+6 [Del]

I'm trying to wrap my head around the templating system a little more, and I can't quite figure out how the variables passed to the constant value that defines the template are in the same scope as compile_template. How would one access the variables available to compile_template? Are they inside of some magical perl variable? I already checked @_ and all that's in their are the contents of the constant.

440 Name: Anonymous : 2014-02-13 22:27 ID:Heaven [Del]

>>439
Oh wow I think I got it on my own. I put die %__v->{title} inside of the my $sub = eval part and it printed out the value of $title.

441 Name: Anonymous : 2014-02-15 09:21 ID:Heaven [Del]

How big of a performance hit would it be to change the entire config system from constants to hashes? I'm trying to make it easier to manage multiple boards for less savvy users. Would something like

my $option = sub {
my ($board,$key) = @_;
return BOARDS->{$board}->{$key} || GLOBAL_OPTIONS->{$key};
};

for retrieving a config option be a huge performance hit or security risk?

442 Name: Anonymous : 2014-02-23 19:13 ID:eKdN0gt1 [Del]

So now I'm trying to change wakaba's setting so that everytime anon post something, he will be redirected to that same thread he posted on. The way user had to go back to front page after every post is annoying to me.

I found the following supposedly related line in wakaba.pl:
# forward back to the main page

make_http_forward(HTML_SELF,ALTERNATE_REDIRECT);

I have zero knowledge with Perl so I hope someone will help me here.

443 Name: Anonymous : 2014-02-23 22:03 ID:OGXnEN+6 [Del]

>>442
There's a patch that adds noko support somewhere on this board.

444 Name: Anonymous : 2014-02-23 23:42 ID:eKdN0gt1 [Del]

>>443
Oh I see, found it here
http://wakaba.c3.cx/sup/kareha.pl/1256252904/

But I have no idea how to get the patch from there.

445 Name: Anonymous : 2014-02-24 16:57 ID:OGXnEN+6 (Image: 0x0 patch, 2 kb) [Del]

>>444
Looks like it got deleted. I went ahead and wrote a new one. No idea if it works. Haven't ran it myself.

446 Name: Anonymous : 2014-02-26 03:19 ID:N3I/K07x [Del]

>>445
Okay, I added that patch but every time it gave me an internal server error.

I don't know if it's the new script's fault. After that, I tried to change simple stuffs like
BEGIN { require "strings_en.pl"; }
into
BEGIN { require "strings_eng.pl"; }

with strings_eng.pl in the root folder of course. Yet it still give me 500 error.

447 Name: Anonymous : 2014-02-27 07:25 ID:N3I/K07x [Del]

How do I remove the 'Manage' option in admin bar? The way it is now, every user can see it and I only want admin to access it.

448 Post deleted by user.

449 Name: Anonymous : 2014-02-27 10:59 ID:Heaven [Del]

>>447
Delete the link from the template in futabastyle.pl

450 Name: Anonymous : 2014-02-27 19:34 ID:N3I/K07x [Del]

>>449
Thanks, I feel like a retard now. Should have figured that out myself.

451 Name: Anonymous : 2014-03-01 02:37 ID:2TuCltKM [Del]

Hi,
I would like to add an ability to wrap text in spoiler tag just like 4chan now. I appreciate your help.

452 Post deleted by moderator.

453 Name: Anonymous : 2014-03-04 22:30 ID:hkJFbyQ2 [Del]

I need help. I enable encoding to utf-8 in the config.pl and made sure to uncomment the no encoding line at the end to write non-English words. Everything works fine at first but I cannot log on to admin panel after that. It gave me Incorrect management password despite whatever it is stated in config.pl.
In fact, if I turned off the encoding lines I could go to admin panel like nothing.

454 Name: Anonymous : 2014-03-05 05:56 ID:hkJFbyQ2 [Del]

>>453
Okay this is resolved, thanks for your help. For future reference: it appears moving the "use encoding 'utf-8'" to after the constant admin_pass will make it work.

But now there is another problem: the html files (header, rules and footer) won't show my native language whatsoever. I know I'm a noob but Isn't the use encoding line affects to all html files?

455 Name: Anonymous : 2014-03-09 18:48 ID:VpK7hCYn (Image: 1898x2024 png, 967 kb) [Del]

src/1394416122991.png: 1898x2024, 967 kb

Hello!
I'm trying to incorporate wakaba into my SMF page (php forum).
All I'm trying to figure out is how to add this
[code]<?php
//Require header.php
require('../header.php');
?>[/code]
to all of the topic .html files generated. the header.php being required is the header for my forum and is designed to be called as shown. this works in any standard php page. can this work in the perl system?
picture is of a php page fetching the forum header and footer and fetching wakaba.html in the middle. replying to topics redirects to the individual topic html.

456 Name: Anonymous : 2014-03-09 20:49 ID:VpK7hCYn [Del]

I've managed to change the generated page extensions to .php and fetch my form header, but the reply pages (ie: /res/11.php) will not load. the head will load but the body won't and the page is just left blank.
anyone have some insight for me?

457 Name: Anonymous : 2014-03-09 20:56 ID:VpK7hCYn [Del]

I should mention that my main wakaba.php page generated by the wakaba.pl file works just fine, it's just the pages that are linked via "reply"

458 Name: Anonymous : 2014-03-10 11:30 ID:8lreZ4Oy [Del]

After I tried to enter to kareha.pl it gives me:
"couldn't create child process: 720002: kareha.pl"

459 Name: Anonymous : 2014-03-10 11:43 ID:8lreZ4Oy [Del]

Wrong section, sorry

460 Name: Anonymous : 2014-04-09 23:04 ID:P8tB4yXX [Del]

heres something for anyone interested in redis/perl. i've found that if your imageboard has a lot of images, the find_md5 function gets slower and slower. i've basically loaded all of the hashes as keys in redis and use it to perform the check, its a lot faster. the key is imageboardname:hash and the values are thread,post,file

this isnt a standard patch, my kareha setup is extremely different from stock (i've split all the posting functions from the main script and run that part in memory) but its only a few changes

http://pastebin.com/9ZtN69Az

461 Name: Anonymous : 2014-04-10 04:43 ID:OGXnEN+6 [Del]

>>460
How much of an improvement would something like this bring to Wakaba? I've been thinking of throwing memcache or redis support on it and moving some of the static cache to a ramdisk for faster IO but haven't bothered because I have no idea if it would be worth it or not.

462 Name: Anonymous : 2014-04-10 09:44 ID:P8tB4yXX [Del]

>>461 i'm not familiar with wakaba but if it keeps its information in a database then there won't be much improvement. the problem with kareha was it basically looped through a giant log file every time it checked a hash.

i do keep cache files for phpbb in tmpfs, you may see some improvement. it's hard to tell though since linux caches stuff into memory anyway

463 Name: Anonymous : 2014-04-11 09:19 ID:OGXnEN+6 [Del]

>>462
Do you know if dynamically building a JSON reponse from a DB cache like redis or memcache every time a user sends a GET request would be any faster or slower than writing to JSON files on a ramdisk every time they're updated? I'm tempted to do both on a clean Wakaba installation and benchmark them, but even then I have no idea how to benchmark something like that properly.

464 Name: Anonymous : 2014-04-16 20:53 ID:P8tB4yXX [Del]

>>463 if i were to do that i'd use elasticsearch as the backend and just ditch the database. it natively outputs json from lucene indexes, supports updates etc.

http://www.elasticsearch.org/overview/elasticsearch

i've contemplated doing something like this myself

465 Name: Anonymous : 2014-04-17 06:44 ID:Ew/xd7/x [Del]

Hi all, I'm trying to install kareha on a basic plan server, which has Perl enabled. I'm used to setting up php software, but I don't code myself. I figured Perl files work in a special way, and they have to be put in a separate forlder, like cgi-bin (?) My question is : which files do I have to put there? Is it all .pl files? Then how do I access these files with a browser, since this folder is outside the main /wwww/ directory? Is there anything else I should know?

466 Name: Anonymous : 2014-04-17 13:20 ID:OGXnEN+6 [Del]

>>465
I vaguely remember the documentation explicity stating not to put your Perl files in cgi-bin.

467 Name: Anonymous : 2014-04-17 21:52 ID:OGXnEN+6 [Del]

So what's up with get_decoded_hashref()? Its used in very few places and as far as I can tell everything wakaba stores in the db has already been through decode_string. What am I missing?

468 Name: Anonymous : 2014-04-19 23:35 ID:Heaven [Del]

>>467
See http://perldoc.perl.org/perlunicode.html#Porting-code-from-perl-5.6.X.

The charset situation in Wakaba is a confusing mess. IIRC, the wrapper functions are either used to retain compatibility with Perl 5.6, or to retrieve Unicode data from a non-Unicode database, or both. Note how the utf8 pragma isn't used anywhere in the script, while the encoding pragma is used sparsely.

It's been a few years since I've done anything with Wakaba, but I recall having to use get_decoded_hashref() or its arrayref counterpart every time I wanted to retrieve text that might contain Unicode.

469 Name: Anonymous : 2014-04-20 10:20 ID:Heaven [Del]

>>468
Just noticed that Wakaba doesn't even set the tables it creates as UTF-8. I wonder how much performance I could gain by ditching compatibility for ancient versions of Perl and non-UTF-8 databases...

470 Name: Anonymous : 2014-04-22 16:51 ID:OGXnEN+6 [Del]

Where does one find out how to examine file headers like Wakaba does for images? I added webm support to Wakaba and I can't really do much but rely on ffmpeg to tell me if the file is proper or not. So far it works perfectly but I feel like I should just throw random files at ffmpeg and expect nothing to go wrong.

471 Name: Anonymous : 2014-04-23 21:31 ID:r9TYPpqN [Del]

>>469 The biggest gain I had was adding another index to each table. A board like http://www.chansluts.com/general/girls/ saves at least 15 seconds on a rebuild. The index that gives the huge boost? "parent".

I also converted everything to UTF-8, as well as using InnoDB.

472 Name: Anonymous : 2014-04-24 06:59 ID:Heaven [Del]

I was considering adding an index. Only reason I haven't yet is because WAHa didn't in the first place, and I'm pretty sure he still knows better than me in most cases.

473 Name: Anonymous : 2014-08-19 17:06 ID:l8RP4zr1 [Del]

Not Acceptable

An appropriate representation of the requested resource link could not be found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

I get this when trying to quote with >>number

Any ideas?

474 Name: Anonymous : 2014-08-20 08:06 ID:Heaven [Del]

>>473
What's your setup like? That doesn't look like an nginx error message so it has to be apache or lighttpd. Do you also get this error when you click on "Last 50 posts"?

475 Name: Anonymous : 2014-08-20 08:54 ID:Heaven [Del]

>>473
>>474
Just realized I'm assuming you use Kareha. Are you using Wakaba or Kareha?

476 Name: Anonymous : 2014-08-23 10:51 ID:l8RP4zr1 [Del]

>>475

I'm using Wakaba. I basically 775'd all the .pl files in the folder's index. Maybe I had to do it wall the files or something?

477 Name: Anonymous : 2014-09-15 10:20 ID:N07PHk5Q [Del]

I'm using wakaba and have a problem with my captcha.

Does anyone else have a problem with Captcha not automatically reloading? After I post, I cannot post again without manually reloading the page and getting a new captcha. If I don't do a manual reload, the captcha stays the same and gives me an error when I try to post again. Is this a browser issue, or something else? I've tried it in Chrome and Firefox, and neither auto-reload the captcha after a post, but the browser does seem to reload because the image and text appear on the page automatically, I just get the same captcha code.

478 Post deleted by user.

479 Name: Anonymous : 2014-09-21 14:19 ID:5xCzuG2s [Del]

Say I have a persistent version of Kareha. Would caching the log in an array and creating a hash of references to each row in the log with MD5 hashes or IP addresses as keys be an easy to squeeze more performance out of Kareha? If I understand correctly, the hash values shouldn't take up too much extra memory since they're refs, and the array itself shouldn't be any bigger than it would be in plain CGI Kareha. Is there anything I'm missing or misunderstanding?

480 Name: Anonymous : 2014-09-26 11:47 ID:K2mFT8RG [Del]

I have latest version of kareha installed and it takes 2 clicks of the preview button to initiate preview, and in chrome and Safari the default markup is blank with an " undefined " under it until you pick one

481 Name: Anonymous : 2014-09-26 13:24 ID:Heaven [Del]

>>480
Not sure about the 2 clicks thing but the undefined thing is fixed in https://github.com/marlencrabapple/kareha-psgi/commit/40149edc3f1a7cb9a9f501311b4fe703df415301. Should work in vanilla Kareha verbatim.

482 Name: Anonymous : 2014-10-23 06:36 ID:qTa4cK4v (Image: 1680x1050 png, 235 kb) [Del]

src/1414071363760.png: 1680x1050, 235 kb

Mojibake title. The other text on the page are displayed correctly

483 Name: WACOMalt : 2014-11-07 19:07 ID:a3Rzp5BB [Del]

Hello. I am deep in trying to run Kareha on an android device. But I am in over my head. First problem is I don't know perl. Second problem is I don't know how to get imagemagick working for android.

So I guess my last recourse is to ask... is anyone willing to try to get this working? I am trying to add on to the Piratebox port for android, which is missing the image-board feature (which on linux is added using kareha).

I got perl working, I think I found an android port of imagemacick, and I think I know how to get the CGI side of things working with the web server piratebox uses...

Anyone interested in helping?

484 Name: Anonymous : 2014-11-19 09:03 ID:dVpgAmN5 [Del]

>>483
Interesting idea. I don't know anything about piratebox, but I'm sure any combination busybox and a light web server with CGI support could handle this. Even better, if you can get Perl and cpanminus installed, you can run everything without the need for an outside web server, which is something that I find a lot easier in 2014. I might try it on an old Android phone I have laying around this weekend. I'll let you know what works best on my end.

485 Name: Anonymous : 2014-11-22 19:35 ID:Heaven [Del]

>>483
here's the easy way to do it:

  1. install https://play.google.com/store/apps/details?id=ru.meefik.linuxdeploy.
  2. install arch linux.

486 Name: Anonymous : 2014-11-30 11:35 ID:Heaven [Del]

>>479 What you are thinking of doing is making Wakaba.

487 Name: Anonymous : 2014-12-05 09:27 ID:Heaven [Del]

>>486
I wasn't aware that Wakaba was simply Kareha with a database. Good to know.

488 Name: Anonymous : 2014-12-18 10:52 ID:Q8Wzy3wQ [Del]

I'm having a problem.

Everything is installed correctly (http://freehispa.host-ed.me) But when I try to reply to a specific post (post #1), using >>1 it gives error 403

Forbidden
You don't have permission to access /wakaba.pl on this server.

What am I doing wrong?

Thanks a lot!!

489 Post deleted by user.

490 Post deleted by user.

491 Name: Anonymous : 2015-06-12 20:32 ID:oH+pKtga [Del]

I am trying to use Kareha on Nginx, and the PATH_INFO is not working. Is there a way to modify kareha to using some kind of GET variable instead of pathinfo?

492 Name: Anonymous : 2015-10-05 12:46 ID:ZCCHz3kG [Del]

Not sure if anyone would be interested, but I've been refreshing, myself on css lately and made a kareha style based on w3's material design tutorial. Feel free to use/improve it, if you'd like.

http://comfy.cu.cc/kareha/

493 Post deleted by user.

494 Name: Anonymous : 2015-12-01 00:07 ID:eh1f7Xmp [Del]

Is it possible to remove tripcodes entirely?

495 Post deleted by user.

496 Name: Anonymous : 2015-12-10 16:29 ID:AVcsy+bd [Del]

>>494
Sure. If you don't want to modify the source code you can set "TRIPKEY" in "config.pl" to something like this:
use constant TRIPKEY => "0" x (MAX_FIELD_LENGTH + 1);

497 Name: Anonymous : 2015-12-10 22:12 ID:zwP1sYpA [Del]

For some reason, my Wakaba installation has decided to stop linking thumbnails to the database, or something. Basically, when an image is posted, a thumbnail is generated and placed in the thumb directory, as expected. However, it doesn't display on the board, and instead only shows the "No thumbnail" text. When I do an SQL dump, I notice that the field for where the thumbnail file name would be is simply blank for each entry.

I am using shared hosting (Lithium Hosting), and I really don't know what kind of thumbnailing software they have installed. It's simply worked up until now. With that in mind, anyone know why this would be happening?

498 Name: 498 : 2015-12-18 09:01 ID:PDxK8NhY [Del]

Is there any way to receive e-mail when the message is posted on Kareha?

499 Post deleted by moderator.

500 Name: Anonymous : 2015-12-28 21:44 ID:ZfWRAA4H [Del]

>>498 Yes, by programming that functionality.

501 Name: Anonymous : 2015-12-28 21:45 ID:Heaven [Del]

>>497 They changed their software and broke some basic functionality. Get a VPS, it'll probably cost less. Well, your site will be gone in a month or two anyway.

502 Name: toki!5yOaZrqx.c : 2015-12-31 16:08 ID:kZ5mufWH [Del]

>>492
cool

>>498
hint: log.txt, index.rss

503 Name: Anonymous : 2016-01-22 06:06 ID:NaAzouRj [Del]

How can I enable webm support?

504 Name: Anonymous : 2016-02-03 02:50 ID:Cl95yTl8 [Del]

Image boards are for images, WebM is cancer.

505 Name: Anonymous : 2016-02-04 02:13 ID:8f18xSv4 [Del]

>>504
agreed
pure, virgin textboards are the superior entity, however

506 Name: Anonymous : 2016-02-07 11:03 ID:yILEoy3t [Del]

>>504
Hm, well, I'd still like to have the option there for those who'd like to use it. Though, the only way of enabling this I can think of would be to allow all types of files and blacklist a few, something I'd rather not do.

507 Name: Anonymous : 2016-03-16 19:04 ID:DdjckOO+ [Del]

So, I want a separate MOD_PASS in addition to an ADMIN_PASS, where MOD_PASS would work on one board and ADMIN_PASS would work on all. I've already set the ADMIN_PASSes to all be the same, created a constant MOD_PASS for each board, and edited check_password to be
sub check_password($$)
{

my ($admin,$password)=@_;
return if($admin eq ADMIN_PASS);
return if($admin eq crypt_password($password));
return if($admin eq MOD_PASS);
make_error(S_WRONGPASS);

}
but...it doesn't work
help pls?

508 Post deleted by user.

509 Name: Anonymous : 2016-04-07 15:22 ID:pesnre1q [Del]

>>503
There is an option in "config.pl".

Uncomment these three lines:
use constant FILETYPES => (
[...]
ogg => 'icons/audio-ogg.png',
[...]
);
and add this line:
webm => 'icons/audio-ogg.png',
somewhere near "ogg => 'icons/audio-ogg.png'," line.

510 Name: Innominate : 2016-04-27 11:47 ID:g/EJZxzv (Image: 77x95 png, 9 kb) [Del]

I don't actually have any questions about how to get your software to work, it always seemed pretty straightforward and relatively easy for me. In my experience, just like you said;

"if it doesn't, there is something wrong with the configuration of your server, not the software."

I just wanted to thank you for making it.

According to most of what I have read and learned about perl,
most of what you have done is impossible, or would at least require an eight hour long castration process, with a pair of dull garden shears.

Eg; Kareha using javascript flawlessly without needing sixty modules from cpan, and a gcc compiler to choke and quit while compiling on windows (what I use, usually).
I'm still not entirely sure what Kozakana html/pl is, apart from a rocket on the back of a pig (want these skittles, kid? o.O) I'm impressed.

I'd agree though, that should be impossible.

Anyways, thanks for making it.

(PerHP is neat to, and I found it useful momentarily prior to discovering Markup::Perl via your link, which I promptly fell in love with.)

Have a great day. ( ゚∀゚)o彡゜えーりんえーりん!!

511 Name: Jon : 2016-08-08 08:19 ID:F9gEj4wU [Del]

Any plans to include .pae file extraction from the PowerArchiver software? Thanks!

512 Name: Anonymous : 2016-08-25 09:46 ID:Mb+DYt5K [Del]

My insecure tripcode with a single quotation mark (') produces wrong output, please send help.

513 Name: Anonymous : 2016-09-01 16:46 ID:4OfA+MxA [Del]

there is a bug where users can create unclosed tags, making every suceeding post bold or italic or whatever.

it happens on "<i/>" in HTML mode because the sanitize_html function in wakautils.pl allows tags other than br to be closed implicitly.

Here's what I would propose as a fix, simply block any tag from being implicit except the 'empty' ones (as defined in ALLOWED_HTML, config_defaults.pl):

[code]
--- a/kareha/wakautils.pl 2007-01-20 14:54:31.000000000 -0500
+++ b/kareha/wakautils.pl 2016-09-01 09:33:14.768000000 -0400
@@ -144,6 +144,7 @@
"$_='$value'";
} keys %args;

+ $implicit=0;
$implicit="/" if($tags{$name}{empty});

push @stack,$name unless $implicit;
[/code]

514 Name: Anonymous : 2016-09-11 23:47 ID:GhQd9Bi6 [Del]

Hello! I recently installed Kareha with "mode_image", and I want people to stay in the thread they post in, instead of being thrown out every time. I have been trying to figure this out for a while, and I don't seem to get any closer to a solution. Could anyone here help me out?

515 Name: Anonymous : 2016-09-18 00:35 ID:ntx4oXUl [Del]

I have File does not exist: wakaba.html
I couldnt find solution anywhere. Can u help me please?

516 Post deleted by moderator.

517 Post deleted by moderator.

518 Name: Anonymous : 2016-10-18 21:21 ID:LK/Xp7G0 [Del]

Hi.I have a problem with wakaba.

Malformed UTF-8 character (fatal) at wakautils.pl line 41

line 41: if($text) { $chars+=length $text; }

519 Name: Anonymous : 2016-10-20 15:23 ID:ksofmSlj [Del]

Hi there! Please assist.

Needed to move my discussion board to another host, but now my "wakaba.pl" page does not work (shows server default "moved" page) and also can't create new post, receive "Unknown Iframe Error" message.

Wakaba.pl set to 755. Directories to 755, files to 644, database imported under the same name with the same user and pass. Anything else that needs to be adjusted?

520 Name: Anonymous : 2016-11-25 20:32 ID:jtRD4Qe7 [Del]

Hi, i tried run wakaba script with xampp and activeperl on windows, all works fine but there is problems with thumbnails. I have installed imagemagick, and thumbnails converted fine - new converted images aprreas in "thumb" folder, but it is empty square plaseholder "no thumbnail" on board page with "class="nothumb". Can anyone help me with it?

521 Post deleted by user.

522 Name: Anonymous : 2017-01-11 01:41 ID:kkZClJRY [Del]

hello! can you help with hiding folder names like /res/ and filenames like wakaba.html from the url bar with .htaccess file?

523 Name: Anonymous : 2017-01-11 15:29 ID:kkZClJRY [Del]

hi! when i move all the files into a subfolder website does not show correctly. for example captchas are not seen. do you know which modifications do i need to make for wakaba to work properly in a subfolder?

524 Post deleted by moderator.

525 Name: anon : 2017-01-26 23:58 ID:nMr4zt2D [Del]

Im a noob how would i go about making it so every post gets a random id

526 Post deleted by user.

527 Name: Anonymous : 2017-02-23 15:39 ID:pC0dPu+i [Del]

>>523>>525 read the config file

528 Name: Anonymous : 2017-02-23 15:47 ID:pC0dPu+i [Del]

>>519

>Anything else that needs to be adjusted?

your server config

>>518

>Hi.I have a problem with wakaba

stop using malformed utf-8 characters

>>515
read the setup instructions

>>514
i'm pretty sure there's a mod right on this board that adds that feature

529 Post deleted by user.

530 Post deleted by user.

Name: Link:
Leave these fields empty (spam trap):
More options...
Verification: