Update phpBB new version

Post Reply
zemerdon
Site Admin
Posts: 353
Joined: Mon Jan 23, 2023 8:13 pm

Update phpBB new version

Post by zemerdon »

download new FULL PACKAGE from https://www.phpbb.com/downloads/

upload and extract to webserver.

remove the following files/directories from the extracted archive.
The config.php file
The files/ directory
The images/ directory
The store/ directory

Code: Select all

cd phpBB3
rm config.php 
rm -rf images/ store/ files/
remove the following file/directories from the webserver root
/vendor
/cache

Code: Select all

cd /var/www/zemerdon.com/
rm -rf vendor/ cache/ install/
copy new files over

Code: Select all

cp -R /home/zemerdon/pgpbb/phpBB3/* /var/www/zemerdon.com/
change permissions

Code: Select all

chown -R www-data:www-data /var/www/zemerdon.com/*
visit the following address to initiate the update...
http://yourwebsite.com/install/app.php
Post Reply