• 首页
    • English
    • 中文
  • 关于我们
  • 服务项目
    • 谷歌SEO服务
    • WordPress建站服务
    • 谷歌ADS/SEM代运营
  • 项目案例
    • 医疗
    • 建材
    • 机械加工
    • 照明
    • 电商
    • 电脑硬件
  • 博客
    • 服务器运维
      • aliyun
      • 服务器安装
      • 宝塔面板
      • 虚拟化
      • 阿里云
      • Centos
      • linux
      • nginx
    • 电子商务
    • 免费资源
    • PHP
      • Magento
      • WordPress
    • 大数据采集
    • Python
    • Javascript
    • SEO
    • 未分类
  • 联系我们
What's Hot

机械模具加工公司网站设计案例

24 10 月, 2023

快速原型公司案例

24 10 月, 2023

陶瓷加工网站案例

24 10 月, 2023
Facebook Twitter Instagram
  • 中文
  • English
Facebook Twitter Instagram
VPSEO VPSEO
  • 首页
    • English
    • 中文
  • 关于我们
  • 服务项目
    • 谷歌SEO服务
    • WordPress建站服务
    • 谷歌ADS/SEM代运营
  • 项目案例
    • 医疗
    • 建材
    • 机械加工
    • 照明
    • 电商
    • 电脑硬件
  • 博客
    • 服务器运维
      • aliyun
      • 服务器安装
      • 宝塔面板
      • 虚拟化
      • 阿里云
      • Centos
      • linux
      • nginx
    • 电子商务
    • 免费资源
    • PHP
      • Magento
      • WordPress
    • 大数据采集
    • Python
    • Javascript
    • SEO
    • 未分类
  • 联系我们
VPSEO VPSEO
Home»PHP»Install phpBB on Ubuntu 17.04 | 17.10 with Nginx, MariaDB and PHP Support
PHP

Install phpBB on Ubuntu 17.04 | 17.10 with Nginx, MariaDB and PHP Support

chrispengcnBy chrispengcn7 8 月, 2021没有评论5 Mins Read
Facebook Twitter Pinterest LinkedIn Tumblr Email
Share
Facebook Twitter LinkedIn Pinterest Email

phpBB is a free flat-forum bulletin board software written in PHP. It enables individuals and webmasters to set up community bulletin boards in minutes to stay in touch with group of people or ideas. This brief tutorial is going to show students and new users an easy way to get phpBB working on Ubuntu 17.04 | 17.10 with Nginx, MariaDB and PHP support.

phpBB requires the LAMP / LEMP stack to function. It is easy to setup and maintain and completely free… Many reputable online forum communities use this software to run their bulletin boards…

If you’re looking for a feature-rich, efficient and free community bulletin board, then you may want to consider phpBB.

To get started with installing phpBB, follow the steps below:

 

Step 1: Install Nginx

phpBB is PHP-based and requires a webserver… So, go and install Nginx on Ubuntu by running the commands below:

sudo apt install nginx

Next, run the commands below to stop, start and enable Nginx service to always start up with the server boots.

sudo systemctl stop nginx.service
sudo systemctl start nginx.service
sudo systemctl enable nginx.service

Step 2: Install MariaDB

phpBB also requires a database server to function.. and MariaDB database server is a great place to start. To install it run the commands below.

sudo apt install mariadb-server mariadb-client

After installing, the commands below can be used to stop, start and enable MariaDB service to always start up when the server boots.

sudo systemctl stop mariadb.service
sudo systemctl start mariadb.service
sudo systemctl enable mariadb.service

After that, run the commands below to secure MariaDB server.

sudo mysql_secure_installation

When prompted, answer the questions below by following the guide.

  • Enter current password for root (enter for none): Just press the Enter
  • Set root password? [Y/n]: Y
  • New password: Enter password
  • Re-enter new password: Repeat password
  • Remove anonymous users? [Y/n]: Y
  • Disallow root login remotely? [Y/n]: Y
  • Remove test database and access to it? [Y/n]:  Y
  • Reload privilege tables now? [Y/n]:  Y

Restart MariaDB server

sudo systemctl restart mariadb.service

Step 3: Install PHP-FPM and Related Modules

phpBB, a PHP-based software will require the below PHP modules. To install PHP and related modules run the commands below

sudo apt install php-fpm php-common php-mbstring php-xmlrpc php-soap php-gd php-xml php-intl php-mysql php-cli php-mcrypt php-ldap php-zip php-curl

After installing PHP, run the commands below to open Nginx PHP default file.

sudo nano /etc/php/7.1/fpm/php.ini            # Ubuntu 17.10
sudo nano /etc/php/7.0/fpm/php.ini            # Ubuntu 17.04

Then change the following lines below in the file and save. You may increase the value to suite your environment.

max_execution_time = 180
max_input_time = 60
memory_limit = 256M
upload_max_filesize = 64M

Step 4: Create phpBB Database

Now that you’ve install all the packages that are required, continue below to start configuring the servers. First create a phpBB database.

Run the commands below to logon to MariaDB. When prompted for a password, type the root password you created above.

sudo mysql -u root -p

Then create a database called phpbb

CREATE DATABASE phpbb;

Create a database user called phpbbuser with new password

CREATE USER 'phpbbuser'@'localhost' IDENTIFIED BY 'new_password_here';

Then grant the user full access to the database.

GRANT ALL ON phpbb.* TO 'phpbbuser'@'localhost' IDENTIFIED BY 'user_password_here' WITH GRANT OPTION;

Finally, save your changes and exit.

FLUSH PRIVILEGES;
EXIT;

Step 5: Download phpBB Latest Release

Next, continue below to download phpBB package. To download, run the commands below.

After downloading, run the commands below to extract the downloaded file into Nginx root directory.

cd /tmp && wget https://www.phpbb.com/files/release/phpBB-3.2.1.zip
unzip phpBB-3.2.1.zip
sudo mv phpBB3 /var/www/html/phpbb

Change or modify the directory permission to fit Nginx configuration.

sudo chown -R www-data:www-data /var/www/html/phpbb
sudo chmod -R 755 /var/www/html/phpbb

Step 6: Configure Nginx

Finally, configure Apahce2 site configuration file for phpBB. This file will control how users access phpBB content. Run the commands below to create a new configuration file called phpbb

sudo nano /etc/nginx/sites-available/phpbb

Then copy and paste the content below into the file and save it. Replace the highlighted line with your own domain name and directory root location.

server {
    listen 80;
    listen [::]:80;
    root /var/www/html/phpbb;
    index  index.php index.html index.htm;
    server_name  example.com www.example.com;

    location / {
    try_files $uri $uri/ @rewriteapp;        
    }

    location /install/ {
     try_files $uri $uri/ @rewrite_installapp;
    }

    location ~ .php(/|$) {
    fastcgi_split_path_info  ^(.+.php)(/.+)$;
    fastcgi_index            index.php;
    fastcgi_pass             unix:/var/run/php/php7.1-fpm.sock;     #Ubuntu 17.10
 #  fastcgi_pass             unix:/var/run/php/php7.0-fpm.sock;     #Ubuntu 17.04
    include                  fastcgi_params;
    fastcgi_param   PATH_INFO       $fastcgi_path_info;
    fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param DOCUMENT_ROOT $realpath_root;
    try_files $uri $uri/ /install/app.php$is_args$args;
    }

     location @rewrite_installapp {
      rewrite ^(.*)$ /install/app.php/$1 last;
     }

}

Save the file and exit.

Step 7: Enable the phpBB and Rewrite Module

After configuring the VirtualHost above, enable it by running the commands below

sudo ln -s /etc/nginx/sites-available/phpbb /etc/nginx/sites-enabled/

Step 8 : Restart Nginx

To load all the settings above, restart Nginx by running the commands below.

sudo systemctl restart nginx.service

Then open your browser and browse to the server domain name followed by install. You should see phpBB setup wizard to complete. Please follow the wizard carefully.

http://example.com/install

You should see phpBB setup wizard

ubuntu phpbb install

Create an admin account by typing a username and password…

phpbb ubuntu install

Enter the database connection details and continue

phpbb ubuntu installation

Accept the server configuration settings and continue.

phpbb setup ubuntu

If you do have a mail server, configure it on this page.. if not ignore and continue

Enjoy!

Run the commands below to delete the install directory

sudo rm -rf /var/www/html/phpbb/install

Congratulation! You have successfully installed phpBB bulletin board.

Install phpBB on Ubuntu 17.04 | 17.10 with Nginx, MariaDB and PHP Support

Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
chrispengcn
  • Website

Related Posts

PHP读取文本文件内容并随机输出任意一行

10 11 月, 2021

PHP中获取远程文件的三种方法

10 11 月, 2021

PHP array_rand() 函数随机输出数组内容

10 11 月, 2021

drupal 后台使用教程

7 8 月, 2021
Add A Comment

Leave A Reply Cancel Reply

*

code

导航
  • 首页
  • 关于我们
  • 服务项目
  • 项目案例
  • 博客文章
  • 联系我们
博客
  • 服务器运维
  • 服务器安装
  • nginx
  • PHP
  • WordPress
  • Python
  • Javascript
  • SEO
  • 电子商务
  • 大数据采集
  • 宝塔面板
  • 数据库
  • 电子商务
  • 虚拟化
  • 阿里云
导航
  • 首页
  • 关于我们
  • 谷歌SEO服务
  • 谷歌ADS/SEM代运营
  • WordPress建站服务
  • 项目案例
  • 博客
  • 联系我们
最新文章
  • 机械模具加工公司网站设计案例
  • 快速原型公司案例
  • 陶瓷加工网站案例
  • CNC数控加工日文网站案例
  • 触摸一体机数字标牌厂家网站案例
关于我们
关于我们

广州纬来科技有限公司
联系地址:广东省广州市番禺区富华中路富源二街18号合和大厦809

QQ : 13602156
Email : 13926026058@139.com
Contact: +86 13926026058

Facebook Twitter YouTube LinkedIn
© 2025 广州纬来科技有限公司 粤ICP备2023105857号-2
  • 首页
  • 关于我们
  • 谷歌SEO服务
  • 谷歌ADS/SEM代运营
  • WordPress建站服务
  • 项目案例
  • 博客
  • 联系我们

Type above and press Enter to search. Press Esc to cancel.