Install miniBB 3.2.2 on Windows 7 localhost via XAMPP 5.6.31 - opensource PHP bulletin board / forum

Trabla: Install miniBB 3.2.2 on Windows 7 localhost via XAMPP 5.6.31 - opensource PHP bulletin board / forum


Install miniBB 3.2.2 on Windows 7 localhost via XAMPP 5.6.31 - opensource PHP bulletin board / forum
miniBB® is a standalone, open source program for building your own Internet forum, it's free to download and highly customizable. MiniBB is not a clone of any existing forum software, it's written by hand from scratch with the base of native and original PHP code. Comparing to the other message board software available on the market, miniBB just brings what it's created for: an easy, lite, and speedy quick forum. If you want a simple and stable community attached to your existing website at the deepest integration level, incl. the customization of the layout to the look of your website, or even synchronizing with the existing membership system, you've just came across to the best forum software, developed exactly for such purpose.

miniBB Official Site - http://www.minibb.com/

Solving:


Watch on YouTube


1.  Download and install XAMPP 5.6.31
from official site: https://www.apachefriends.org/download.html

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 1

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 2

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 3

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 4

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 5

2. Download miniBB 3.2.2 forum's source code
from official site: http://www.minibb.com/

- click "Download" link

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 6

- scroll down

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 7

- click on "miniBB" link with version 3.2.2

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 8

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 9

3. Create folder /minibb_forums in /htcdocs folder
e.g. C:\xampp\htdocs\minibb_forums

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 10


4. Unzip archive miniBB 3.2.2 forum , copy all files from archive
to folder /minibb_forums  in /htdocs

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 11


5. Run xampp control panel
- start Apache


Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 12


- start MariaDB ( MySQL) database

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 13

- all ok

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 14

6. Now we need to create database for miniBB 3.2.2 forum

- open browser
- goto url   http://localhost/phpmyadmin/

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 15


- click sql tab
Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 16


- copy and paste following SQL script 
- it will create database and user for  miniBB 3.2.2 forum


CREATE DATABASE `minibb` 
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

CREATE USER 'minibb-owner'@'localhost'; 
CREATE USER 'minibb-owner'@'127.0.0.1';
CREATE USER 'minibb-owner'@'::1';

SET PASSWORD 
FOR 'minibb-owner'@'localhost' = PASSWORD('minibb123$%');
SET PASSWORD 
FOR 'minibb-owner'@'127.0.0.1' = PASSWORD('minibb123$%');
SET PASSWORD 
FOR 'minibb-owner'@'::1' = PASSWORD('minibb123$%');


GRANT ALL PRIVILEGES ON 
`minibb`.* TO 'minibb-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`minibb`.* TO 'minibb-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`minibb`.* TO 'minibb-owner'@'::1' WITH GRANT OPTION;

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 17


- execute SQL script - click "Go" button

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 18


Hooray !!! Database created !!!

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 19


7. Now we need to change config file setup_options.php
 of miniBB 3.2.2 forum

- open file
C:\xampp\htdocs\minibb_forums\setup_options.php

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 20



- change following fields:

find   $DBname='database.name';

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 21

change to  $DBname='minibb';

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 22

 find   $DBusr='database.username'; 

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 23

change to  $DBusr='minibb-owner';

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 24

 find   $DBpwd='database.password';

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 25

change to  $DBpwd='minibb123$%';

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 26


 find   $admin_usr='Admin';


Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 27

change to  $admin_usr='samuraikit';
where - samuraikit - is login for miniBB 3.2.2 forum  admin
type what you want

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 28

 find   $admin_pwd='specify.admin.password';


Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 29

change to  $admin_pwd='kit123$%67';
where - kit123$%67 password of  miniBB 3.2.2 forum  admin ( set what you want )

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 30

 find   $admin_email='specify.root.admin.email.address';

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 31

change to   $admin_email='mymail@mail.com';
where mymail@mail.com - admins email, set yours

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 32


 find   $main_url='http://www.minibb.com/forums';


Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 33

change to    $main_url='http://localhost/minibb_forums';


Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 34

- save and close file

Perfect !!!

8.  Now we are ready to run installer

- open browser

- goto url http://localhost/minibb_forums/_install.php

and click "CONTINUE SETUP >>>"

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 35

- success !!! Hooray !!!
Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 36

DELETE the _install.php and _install_mysql.sql files from your miniBB forums folder

( in folder - C:\xampp\htdocs\minibb_forums  )

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 37

- let's check DB - tables created
 http://localhost/phpmyadmin/db_structure.php?server=1&db=minibb

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 38

Hooray !!!

9. Login as admin

- open url in browser http://localhost/minibb_forums/bb_admin.php


Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 39

- type admin username and password and click "Login"
( if you used have same as in tutorial than samuraikit , kit123$%67 )

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 40

- click "Add forum" to add forum

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 41


- create new "Test Forum"

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 42


- write some topic and replay

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 43

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 44

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 45

Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 46


Superb!!! Enjoy miniBB 3.2.2 forum forum !!!


Install miniBB 3.2.2 PHP forum on Windows 7 localhost XAMPP tutorial 47

No comments:

Post a Comment