| ezFAQ is a very simple script, which only includes 4
files, config.php, install.php, index.php and admin.php
* Note that to properly understand
this tutorial, you will need a working knowledge of HyperText Markup
Language (HTML).
First of all, upload
ezFAQ files to your web server.
Your web server must have PHP and MySQL. Unzip ezFAQ and upload files into your web server.
Customise file
config.php
$DBhost = "xxxxxxx"; //$DBhost
= "localhost";
$DBuser = "xxxxx";
$DBpass = "xxxxxx";
$DBName = "xxxxxx";
$DBtable = "ezfaq" ;
mysql_connect($DBhost,$DBuser,$DBpass) or
die("Unable to connect to database" . mysql_error());
@mysql_select_db("$DBName") or
die("Unable to select database $DBName" . mysql_error()
);
//You need to change following variables
$faq_admin = "admin" ; // admin
login name, change it!!!
$faq_pw = "changeit" ; // admin password, change it !!!
$admin_email = "admin@yourdomainl.com" ; //admin email
Run install.php
on your browser
Suppose you install the script on http://www.yourdomain.com/ezFAQ,
then enter http://www.yourdomain.com/ezFAQ/install.php on your browser.
If everything goes well, ezFAQ is ready to go. If you encounter
problem, check your config.php file.
Or, you can check your database system directly.
Go to admin page
to manage the questions
There are 3 options
Send answer to customer: When admin click this buttom, system will send answer to customer by email.
Post: Post the question and answer.
Suspend: suspend the question and the answer. |