- After installing/upgrading, you may run into an issue accessing the ACP GENERAL page.
- Cause: Your database name contains a period (.), dash (-) or other non-alphanumeric character.
- Fix: https://github.com/phpbb/phpbb/pull/6121/files
Yes pleaseCaptain P-H-P-BB wrote: ↑Sat Jan 30, 2021 12:27 pmI can also create a separate topic for this including the support template
Code: Select all
[phpBB Debug] PHP Warning: in file [ROOT]/viewforum.php on line 1030: A non-numeric value encountered
$topic_row['REPLIES']
in extensions which should remain integer. This can be fixed by typecasting the value either in in extension or in the core (like (int) $topic_row['REPLIES'] + 1
). The latter way would be more a protection measure from what might be happening with the value in extensions.Therxu wrote: ↑Sun Jan 31, 2021 4:16 pm This is most likely due to changing type of$topic_row['REPLIES']
in extensions which should remain integer. This can be fixed by typecasting the value either in in extension or in the core (like(int) $topic_row['REPLIES'] + 1
). The latter way would be more a protection measure from what might be happening with the value in extensions.
REPLIES
was overwritten by my extension to place a url link for an ajax call. typecasting wouldn't have fixed it, so I used a different event and altered the template block.Same issue to me if I switch to PHP 8.0.1.Captain P-H-P-BB wrote: ↑Sat Jan 30, 2021 12:27 pm Hi there,
Thanks a lot for providing this fix.
After upgrading from 3.3.2 to 3.3.3 I had the issue that I could not access the ACP general page. Everything else, including the rest of the ACP was working.
....
Please read this: viewtopic.php?f=661&t=2582531