Trabla: Install SimpleMachines Forum ( SMF ) 2.0.12 on Windows 7 x64 localhost XAMPP 5.6.28 - open source PHP Forum software
SimpleMachines Forum ( SMF ) is all that in one package, giving you an easy to use forum with many powerful features for you as well as your users. SMF is an open-source project made by volunteers from across the world. SMF features a powerful Package Manager, allowing you to quickly apply any of the hundreds of modifications in our database, as well as a variety of custom themes that change the way your site looks. SMF is written in the popular language PHP and uses a MySQL database. It is designed to provide you with all the features you need from a bulletin board while having an absolute minimal impact on the resources of the server.
Official Site - http://www.simplemachines.org/
Solving:
Watch on YouTube
SQL script to create database and user for SimpleMachines Forum ( SMF ) 2.0.12,
used in tutorial:
CREATE DATABASE `smf`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'smf-owner'@'localhost';
CREATE USER 'smf-owner'@'127.0.0.1';
CREATE USER 'smf-owner'@'::1';
SET PASSWORD
FOR 'smf-owner'@'localhost' = PASSWORD('smf123$%');
SET PASSWORD
FOR 'smf-owner'@'127.0.0.1' = PASSWORD('smf123$%');
SET PASSWORD
FOR 'smf-owner'@'::1' = PASSWORD('smf123$%');
GRANT ALL PRIVILEGES ON
`smf`.* TO 'smf-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`smf`.* TO 'smf-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`smf`.* TO 'smf-owner'@'::1' WITH GRANT OPTION;
No comments:
Post a Comment