"Fossies" - the Fresh Open Source Software Archive 
Member "faqadmin/Readme.txt" (31 Oct 2006, 2768 Bytes) of package /linux/www/old/faqadmin-current.tgz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 Faq Administrator version 3.0 is a PHP4/Mysql message board.
2
3 This Application is free for general use provided you do not remove the
4 "powered by" links or credits.
5
6 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
7 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
10 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
11 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
12 THE SOFTWARE.
13
14 To install faqadmin, copy the "faq" directory and it's contents into
15 the desired destination web directory.
16
17 *NOTE PHP4 and MySQL must be installed and configured to use FaqAdmin.
18
19 The following MySQL Databases and Tables are required, and can be setup either manually using
20 the table parmeters below, or by using the 'setup' through one of the 'index' pages.
21 Which "index" page you use, is up to you.
22
23 * If you want to use the easier "setup" script, copy the "setup" directory to your faq directory.
24 * After running setup it is advisable that you either delete the "setup" directory, or move it
25 to a location that is not accessable through the web.
26
27 Database Table Columns values
28
29 faqs
30
31 faq_dat
32
33 fodr int(11) primary key default 0 auto_increment
34 faq_dat text
35 faq_user varchar(30) not null
36 faq_memo varchar(25) not null
37 faq_user_email varchar(30) not null
38 faq_date varchar(18)
39 email varchar(2) default 'N'
40 replies varchar(4) default 0
41 faq_fid varchar(5)
42 redate varchar(18)
43
44 faq_re_dat
45
46 refaq_data text
47 faq_re_memo varchar(25)
48 faq_reuser varchar(30) not null
49 faq_reuser_email varchar(30) not null
50 refac_date timestamp(14)
51 faq_re_fid varchar(5)
52 fodr varchar(11)
53
54 faq_forum
55
56 fid int(11) primary key default 0 auto_increment
57 forum_name varchar(25) not null
58 decription text)
59
60 faq_admin
61
62 uaid int(11) primary key default 0 auto_increment
63 userid varchar(30)
64 userpass varchar(14)
65
66 *note you must have read/write permissions to these databases/tables
67
68 The following file needs to be modified to reflect your connection information
69
70 connect.php
71
72 Example:
73 $connection = mysql_connect (server, user);
74
75 If you'd like links to other pages on your site, uncomment
76 include("links.php") in main.php
77
78 Url information must be configured in the following file, for "email notification".
79 mail.php
80 *change localhost to your desired domain name,
81 (yes you can use a IP address here also) then un-comment
82
83 Feel free to email either bitfuzzy@campbus.com or faqadmin@campbus.com
84 with any questions or problems.
85