Install Phorum 5.2.23 forum with WampServer 3.0.6 on Windows 7 localhost

Trabla: Install Phorum 5.2.23 forum with WampServer 3.0.6 x64 on Windows 7 x64 localhost - opensource PHP forum


Install Phorum 5.2.23 forum with WampServer 3.0.6 on Windows 7 localhost
Started in 1998, Phorum was the original PHP and MySQL based Open Source forum software. Phorum's developers pride themselves on creating message board software that is designed to meet different needs of different web sites while not sacrificing performance or features.
Official Site - http://www.phorum.org/

Solving:



Watch on YouTube

SQL script to create database and user for Phorum 5.2.23 forum used in tutorial:


CREATE DATABASE `phorum` 
DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;

CREATE USER 'phorumowner'@'localhost'; 
CREATE USER 'phorumowner'@'127.0.0.1';
CREATE USER 'phorumowner'@'::1';

SET PASSWORD 
FOR 'phorumowner'@'localhost' = PASSWORD('phorum123');
SET PASSWORD 
FOR 'phorumowner'@'127.0.0.1' = PASSWORD('phorum123');
SET PASSWORD 
FOR 'phorumowner'@'::1' = PASSWORD('phorum123');


GRANT ALL PRIVILEGES ON 
`phorum`.* TO 'phorumowner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`phorum`.* TO 'phorumowner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`phorum`.* TO 'phorumowner'@'::1' WITH GRANT OPTION;




No comments:

Post a Comment