{"id":149,"date":"2017-07-19T15:14:11","date_gmt":"2017-07-19T15:14:11","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=149"},"modified":"2018-01-25T06:18:52","modified_gmt":"2018-01-25T12:18:52","slug":"how-to-install-phpbb-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/","title":{"rendered":"How to install phpBB on Ubuntu 16.04"},"content":{"rendered":"<div id=\"linux-3612870078\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>phpBB is an <a href=\"https:\/\/linuxhostsupport.com\/blog\/open-source-sysadmin-tools-we-use-on-a-daily-basis\/\">open source<\/a> bulletin board forum software that provides a virtual space for discussion among the members of your website. It has a huge variety of features like flat topic structure, sub-forums, forum-specific styles, user groups, group-based permissions, database query and template caching, support for <a href=\"https:\/\/linuxhostsupport.com\/blog\/speed-up-your-application-by-upgrading-to-php-7\/\">PHP 7<\/a>, multiple database engines and much more. With phpBB&#8217;s extensive features you can create your own forum in a matter of minutes and what&#8217;s most important, it&#8217;s completely free.<\/p>\n<p><!--more--><\/p>\n<p>In this tutorial, we will show you how to install phpBB on an <a href=\"https:\/\/linuxhostsupport.com\/blog\/upgrade-ubuntu-vps-to-16-04-lts\/\" rel=\"noopener\">Ubuntu 16.04 VPS<\/a>.<\/p>\n<h2>Installing the LAMP stack<\/h2>\n<p>First login as root so we don&#8217;t have to type sudo in front of every command:<\/p>\n<pre># sudo su<\/pre>\n<p>Make sure your packages are up to date:<\/p>\n<pre># apt-get update<\/pre>\n<p>Now run this command to install the LAMP stack with <a href=\"https:\/\/linuxhostsupport.com\/blog\/speed-up-your-application-by-upgrading-to-php-7\/\">PHP7<\/a>:<\/p>\n<pre># apt-get -y install apache2 mysql-server mysql-client libapache2-mod-php7.0 php7.0-mysql php7.0-gd imagemagick unzip<\/pre>\n<h2>Creating a database for phpBB<\/h2>\n<p>Log in to the MySQL server:<\/p>\n<pre># mysql<\/pre>\n<p>Create a blank database for phpBB to use:<\/p>\n<pre>mysql&gt; create database phpBB;<\/pre>\n<p>Create the database user, make sure to change the password randomgeneratedpassword with your own password.<\/p>\n<pre>mysql&gt; create user 'phpBB_dbuser'@'localhost' identified by 'randomgeneratedpassword';<\/pre>\n<p>Grant all privileges to the user on the phpBB database:<\/p>\n<pre>mysql&gt; grant all privileges on phpBB.* to 'phpBB_dbuser'@'localhost';<\/pre>\n<p>Apply the privileges we just gave to the user to the server:<\/p>\n<pre>mysql&gt; flush privileges;<\/pre>\n<h2>Installing phpBB<\/h2>\n<p>Change to Apache&#8217;s document root directory:<\/p>\n<pre># cd \/var\/www\/html<\/pre>\n<p>Delete Apache default files(You should skip this step if you have another site&#8217;s contents in this directory and install phpBB in a separate directory instead):<\/p>\n<pre># rm -rf .\/*<\/pre>\n<p>Download the latest phpBB version to your server(At the time of writing 3.2.0 is the latest version of phpBB):<\/p>\n<pre># wget https:\/\/www.phpbb.com\/files\/release\/phpBB-3.2.0.zip<\/pre>\n<p>Extract phpBB to the current directory:<\/p>\n<pre># unzip phpBB-3.2.0.zip<\/pre>\n<p>Delete the archive file as we no longer need it:<\/p>\n<pre># rm phpBB-3.2.0.zip<\/pre>\n<p>Move all the contents from the extracted directory to the current directory(Skip this step and the next step if you have another site&#8217;s contents in the \/var\/www\/html directory):<\/p>\n<pre># mv .\/phpBB3\/* .<\/pre>\n<p>Delete the empty phpBB3 directory:<\/p>\n<pre># rm -rf .\/phpBB3<\/pre>\n<p>Note: If you installed phpBB in a separate directory you can type in the following command if you want to rename the phpBB3 directory to something else like forum so phpBB would be accessible at http:\/\/yourdomain.com\/forum:<\/p>\n<pre># mv .\/phpBB3 .\/forum<\/pre>\n<p>Change the owner to the www-data user for all the files and sub-directories in \/var\/www\/html:<\/p>\n<pre># chown -R www-data:www-data \/var\/www\/html\/<\/pre>\n<p>If you installed phpBB in a separate directory make sure to change your working directory to that directory:<\/p>\n<pre>cd \/var\/www\/html\/your_phpBB_directory<\/pre>\n<p>Note: Replace your_phpBB_directory with the directory you installed phpBB in.<\/p>\n<p>Give appropriate permissions to the config file and the following directories:<\/p>\n<pre># chmod 660 images\/avatars\/upload\/ config.php\r\n# chmod 770 store\/ cache\/ files\/<\/pre>\n<h2>Completing the installation<\/h2>\n<p>Using your browser, go to http:\/\/yourdomain.com\/install or if you installed phpBB in a separate directory http:\/\/yourdomain.com\/your_phpBB_directory\/install.<br \/>\nClick the INSTALL tab and then click the Install button.phpBB will ask you for credentials, be sure to substitute these credentials for your own:<\/p>\n<pre>Administrator username: admin\r\nContact email address: admin@yourdomain.com\r\nAdministrator password: admin_test1234-\r\nConfirm administrator password: same as above\r\n<\/pre>\n<p>Click Submit when you are done.<br \/>\nNote: Make sure to use a secure password with at least 8 characters, 1 uppercase letter, 1 special character, and alphanumeric characters.<\/p>\n<p>Now phpBB will ask you for details regarding your database, here&#8217;s our example:<\/p>\n<pre>Database Type: MySQL with MySQLi Extension\r\nDatabase server hostname or DSN: localhost\r\nDatabase server port: leave blank\r\nDatabase username: phpBB_dbuser\r\nDatabase password: randomgeneratedpassword\r\nDatabase name: phpBB\r\nPrefix for tables in database: phpbb_\r\n<\/pre>\n<p>Click Submit again.<\/p>\n<p>In the next step, you should set up options according to your preference like providing your domain name or whether you would like to force SSL.After this step, you will be taken to the SMTP configuration page, if you don&#8217;t have an SMTP server you can leave this page as it is and click Submit to continue. Click Install again and wait for the installer to finish.When the installer finishes installing phpBB you can click the take me to the ACP link and set up your new phpBB installation.<\/p>\n<p>That&#8217;s it, now you should have phpBB installed on your server.<\/p>\n<p>Of course, you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/linuxhostsupport.com\/software-installation.html\">Software Installation services<\/a>, in which case you can simply ask our expert Linux admins to install phpBB for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><strong>PS.<\/strong> If you liked this post, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n<p>&nbsp;<\/p><div id=\"linux-899017868\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>phpBB is an open source bulletin board forum software that provides a virtual space for discussion among the members of your website. It has a huge variety of features like flat topic structure, sub-forums, forum-specific styles, user groups, group-based permissions, database query and template caching, support for PHP 7, multiple database engines and much more. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":150,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[79,39,20],"class_list":["post-149","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-linux-host-support","tag-phpbb","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install phpBB on Ubuntu 16.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"phpBB is an open source bulletin board forum software that provides a virtual space for discussion among the members of your website. It has a huge\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install phpBB on Ubuntu 16.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"phpBB is an open source bulletin board forum software that provides a virtual space for discussion among the members of your website. It has a huge\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2017-07-19T15:14:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-25T12:18:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/07\/phpbb-ubuntu.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to install phpBB on Ubuntu 16.04\",\"datePublished\":\"2017-07-19T15:14:11+00:00\",\"dateModified\":\"2018-01-25T12:18:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/\"},\"wordCount\":677,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/07\/phpbb-ubuntu.jpg\",\"keywords\":[\"Linux host support\",\"phpbb\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/\",\"name\":\"How to install phpBB on Ubuntu 16.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/07\/phpbb-ubuntu.jpg\",\"datePublished\":\"2017-07-19T15:14:11+00:00\",\"dateModified\":\"2018-01-25T12:18:52+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"phpBB is an open source bulletin board forum software that provides a virtual space for discussion among the members of your website. It has a huge\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/07\/phpbb-ubuntu.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/07\/phpbb-ubuntu.jpg\",\"width\":1200,\"height\":600,\"caption\":\"phpbb ubuntu\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install phpBB on Ubuntu 16.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install phpBB on Ubuntu 16.04 | LinuxHostSupport","description":"phpBB is an open source bulletin board forum software that provides a virtual space for discussion among the members of your website. It has a huge","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"How to install phpBB on Ubuntu 16.04 | LinuxHostSupport","og_description":"phpBB is an open source bulletin board forum software that provides a virtual space for discussion among the members of your website. It has a huge","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2017-07-19T15:14:11+00:00","article_modified_time":"2018-01-25T12:18:52+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/07\/phpbb-ubuntu.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to install phpBB on Ubuntu 16.04","datePublished":"2017-07-19T15:14:11+00:00","dateModified":"2018-01-25T12:18:52+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/"},"wordCount":677,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/07\/phpbb-ubuntu.jpg","keywords":["Linux host support","phpbb","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/","name":"How to install phpBB on Ubuntu 16.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/07\/phpbb-ubuntu.jpg","datePublished":"2017-07-19T15:14:11+00:00","dateModified":"2018-01-25T12:18:52+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"phpBB is an open source bulletin board forum software that provides a virtual space for discussion among the members of your website. It has a huge","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/07\/phpbb-ubuntu.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/07\/phpbb-ubuntu.jpg","width":1200,"height":600,"caption":"phpbb ubuntu"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-phpbb-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install phpBB on Ubuntu 16.04"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/149","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=149"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/149\/revisions"}],"predecessor-version":[{"id":397,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/149\/revisions\/397"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/150"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=149"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=149"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=149"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}