The FUDforum FAQ:
Contents |
Install.php is like a self-extracting archive that contains all the files that you need within itself. Just run it (from your browser) and it will unpack all required files to the correct locations.
The zlib files are compressed, hence smaller to download. For details, see http://www.php.net/manual/en/intro.zlib.php
To see if you have zlib installed, run this PHP script:
<?php if (extension_loaded("zlib")) echo "zlib is installed"; else echo "zlib is NOT installed"; ?>
Besides wanting to create a unique identity for your forum, users who want to change their themes should preferably create a separate theme to prevent subsequent upgraded (which may contain changes to the default theme) from overwriting their changes. If you don't plan to make any drastic theme changes, it's perfectly OK to use the default theme.
After making manual changes to a theme's files (not via the Theme Editor), administrators must navigate to the Admin Control Panel -> Theme Manager to rebuild the theme. This is required for FUDforum to combine the theme's template, source and message files into the PHP scripts required to run the forum. The main advantage of this approach is that work is performed up-front making FUDforum's scripts lightning fast.
There are several ways to do it:
post_descr: Topic Description:
<tr class="RowStyleB"><td class="GenText">{MSG: post_descr}</td><td><input ...
This normally happens when the wrong locale was selected for a theme. Navigate to the Admin Control Panel -> Theme Manager to change your locale. When done, rebuild your themes.
The correct locale depends on your operating system. For example, one should typically use german on Windows systems, but de_DE.utf-8 on Linux/Unix systems.
When you browse your FUDforum site and you get a blank page, it usually means that an error occured, but PHP is configured not to display it.
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_COMPILE_ERROR); ini_set('display_errors', '1');
There are too many sites to list here (do a Google search to see for yourself). Here are a couple, just to show that you are in good company:
Feel free to add your forum to the above list.
FUDforum is released under version 2 of the GNU General Public License. In short, this means that FUDforum is free to download, use, distribute and modify. However, if any of these modifications are released to the public, that code must also be released under the same license as FUDforum. The copyright notice in all the source files, however, must be left intact. Any modification or removal of this copyright is illegal under the terms of the GNU General Public Licence.
Yes, you may remove the copyright from the footer, but please don't! If you must, please try to keep at least a small "Powered by FUDforum" with the link back to http://fudforum.org/ in some form on your forum.