We were talking about this on fatoldmen yesterday so today I installed it. There's no instructions that I could find so I'll post them here.
Download the software via git:
https://github.com/f2d/bakareha . Make sure you have CGI for your Perl. You can install it via cpan or a method of your choice. If you haven't used cpan before, you might have to fill out some config info. Start it at the shell and then at the prompt "install CGI".
Move the directory in your git download called "board" under your webserver root. If you change the name of the directory, you'll have to change the name in the configs as well. In the /board/ directory, make the following directories: src, thumb, res. Make everything in /board/ owned by the webserver user:group. On my install, that's chown -R apache:apache board. Chmod all the Perl files (*.pl) 755 so they can execute as CGI's.
Edit the config file for the board, at config.pl. If you use a banner, move it into the /board/ directory. Make sure you have 'convert' from ImageMagick.
Shut down the webserver, and add to the config file info for the board's directory so it can exec CGI. This is for Apache (/etc/httpd/httpd.conf), near the other directory directives. I deny the existance of Nginx.
<Directory "/srv/httpd/htdocs/board">
AllowOverride All
Options ExecCGI FollowSymLinks SymLinksifOwnerMatch MultiViews
</Directory>
Restart the webserver. Make sure it can execute CGI's in the board's directory if you are having problems. Check the server logs.
Message too long. Click
here
to view full text.
3 posts and 2 images omitted.