UseBB 1 FAQQ: How do I install UseBB?Please read docs/index.html that comes with UseBB.
Q: Do I have to edit all the values in config.php?No. If you are installing UseBB, please read docs/index.html. Everything you need to do is described in there. You should not edit all the values manually. When using the installer, you don't even have to edit any.
Q: Whenever the forum redirects me (eg after logging in or posting) I receive a 404 error or an error of any other kind (not a UseBB General Error) or I am being redirected to another site.In config.php, you should always leave the value of $conf['board_url'] blank,
unless the forum is not able te recognize the URL by itself. Over 90% of this problem is caused by an incorrectly filled in config value that should have been left blank in the first place.
Q: How do I use new translations?Upload the files into the languages/ directory. You will be able to use them immediately in the ACP config and Your Panel.
Q: How do I use new templates?Upload the template's directory into templates/. You will be able to use them immediately in the ACP config and Your Panel.
Tip: you can hide templates from being available to members by including a dot (.) at the beginning of the template's directory. Only admins will be able to use the template then.
Q: Why doesn't echo, print, etc produce any output?UseBB uses a template engine and filters all other content produced directly. To include output, put these in the template files or use
$template->add_raw_content();
For example:
echo 'foo bar';
becomes
$template->add_raw_content('foo bar');Q: I'm getting an Internal Server ErrorYour server might not support all directives in .htaccess. Try commenting the lines by putting # in front of them:
#Options -Indexes
#DirectoryIndex index.php
If it still doesn't work, remove the .htaccess file. Friendly URL's will not work anymore though.
Q: How can I integrate UseBB into a website or other CMS?Unfortunately, UseBB 1 was not planned or developed with integration in mind. No possibilities for easy integration exist. If you would like to perform an integration, this will most likely be a custom development effort, which we do
not support.
Q: What encodings does UseBB 1 support?UseBB 1 supports all encodings except multibyte ones.
Unicode (UTF-8 etc) is not supported. Use Unicode based translations
at your own risk.
« Last edit by
Dietrich on Thu Jan 10, 2008 4:26 pm. »