-
-
Notifications
You must be signed in to change notification settings - Fork 537
Description
Creating a bug report/issue
- [ X] I have searched the existing open and closed issues
Required Information
- DietPi version |
cat /boot/dietpi/.version
G_DIETPI_VERSION_CORE=10
G_DIETPI_VERSION_SUB=1
G_DIETPI_VERSION_RC=2
G_GITBRANCH='master'
G_GITOWNER='MichaIng' - Distro version |
echo $G_DISTRO_NAME $G_RASPBIAN
bookworm 0 - Kernel version |
uname -a
Linux DietPi 6.12.62+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.12.62-1+rpt1~bookworm (2026-01-19) aarch64 GNU/Linux - SBC model |
echo $G_HW_MODEL_NAMEor (EG: RPi3)
RPi 4 Model B (aarch64) - Power supply used | (EG: 5V 1A RAVpower)
yes - SD card used | (EG: SanDisk ultra)
Sandisk
Additional Information (if applicable)
-
Software title
phpBB -
Software title | (EG: Nextcloud)
-
Was the software title installed freshly or updated/migrated?
fresh install -
Can this issue be replicated on a fresh installation of DietPi?
Not sure, but I would assume so.
- Bug report ID |
echo $G_HW_UUID
Steps to reproduce
I tried to install phpBB , but encountered issues when I tried to install via the dietpi-software.
- Start dietpi-software
- Select phpBB
- Install
Expected behaviour
This should result in phpBB being installed without any FAILED steps
Actual behaviour
The install fails at the curl command.
[FAILED] DietPi-Software | curl -sSfL 3.3.15 -o 3.3.15
[ .. ]curl: (28) Failed to connect to 3.3.0.15 port 80 after 135252 ms: Couldn't connect to server
Extra details
It seems like it was trying to get the file from 3.3.15 which is not correct. So I changed the command to https://download.phpbb.com/pub/release/3.3/3.3.15/phpBB-3.3.15.zip
[ INFO ] DietPi-Software | Executing alternative command: curl -sSfL https://download.phpbb.com/pub/release/3.3/3.3.15/phpBB-3.3.15.zip -o 3.3.15
This helped to get the file, but it would fail at the next step. It seems to expect the extracted folder. So I unzipped the folder and the install continued until the end without any failed steps.
Later during the initial run to setup phpBB, I also got an errors that the folders cache/, store/, images/ and files/ in /var/www/phpbb were not writeable. Since I did not know which user it should be assigned to I just gave write rights to the group and others. (chmod go+w )
As I do not know if how the curl should have gone, I don't know if those followup errors were the result of my manual tinkering. Which works for me as a workaround at the moment.