Page 20 of 24

Re: princed.org (phpBB forum + webpages)

Posted: August 30th, 2020, 1:54 pm
by Norbert
David wrote: August 30th, 2020, 1:38 pmI couldn't find any boards where Quick Reply is not enabled.
Are there any?
viewtopic.php?f=121&t=3690

Re: princed.org (phpBB forum + webpages)

Posted: August 30th, 2020, 1:55 pm
by Norbert

Re: princed.org (phpBB forum + webpages)

Posted: August 30th, 2020, 2:11 pm
by David
Norbert wrote: August 30th, 2020, 1:54 pm
David wrote: August 30th, 2020, 1:38 pmI couldn't find any boards where Quick Reply is not enabled.
Are there any?
viewtopic.php?f=121&t=3690
Ah, indeed, thanks.


Now I went through all the boards; Quick Reply is disabled on topics in these boards:
viewforum.php?f=121 (Pr1SnesLevEd)
viewforum.php?f=126 (SDLPoP)
viewforum.php?f=127 (MININIM)

Curiously, it's enabled on some boards with numbers above 121:
viewforum.php?f=122 (Prince of Persia 1 for SNES)
viewforum.php?f=123 (Total Pack)
viewforum.php?f=124 (NES: Discussion and New Levels/Mods)

Re: princed.org (phpBB forum + webpages)

Posted: August 31st, 2020, 9:48 am
by Falcury
David wrote: August 30th, 2020, 2:11 pm Now I went through all the boards; Quick Reply is disabled on topics in these boards:
viewforum.php?f=121 (Pr1SnesLevEd)
viewforum.php?f=126 (SDLPoP)
viewforum.php?f=127 (MININIM)
OK, I enabled the quick reply option for these boards. Now the setting should be the same everywhere.

Re: princed.org (phpBB forum + webpages)

Posted: January 4th, 2021, 12:05 pm
by Falcury
I updated the forum software to phpBB 3.3.2 (the latest version).
Hopefully everything still works.
Falcury wrote: January 27th, 2020, 7:44 pm I tried to update the forum software to the latest version (phpBB 3.3), but it turns out that this requires PHP 7.1.3, which the webserver is not yet running. So, instead I updated to the next latest version (phpBB 3.2.9), which should still be fine, for now.
It turns out that the Apache configuration was forcing the PHP handler to use PHP 5.6, even though version 7.4 is the current version on the webserver. I think this is the reason I couldn't upgrade to a newer phpBB version when I tried it before.
(In any case, the forum now runs on PHP 7.4.)

Re: princed.org (phpBB forum + webpages)

Posted: January 4th, 2021, 1:15 pm
by Norbert
Thanks Falcury, the effort you've put into keeping the forum up to date is much appreciated.
And nice that it now uses PHP 7.

Re: princed.org (phpBB forum + webpages)

Posted: January 4th, 2021, 1:26 pm
by atrueprincefanfrom18
Norbert wrote: January 4th, 2021, 1:15 pm And nice that it now uses PHP 7.
...which is faster.

And thanks Falcury!

Edit: Falcury, if you would like to take a look at this thread from here and especially at this post.

Re: princed.org (phpBB forum + webpages)

Posted: January 5th, 2021, 11:07 pm
by Norbert
It appears that attaching images (and possibly other content) currently results in an "Error parsing server response." error message.
Related post by YURA: viewtopic.php?p=31838#p31838
[Edit: I think the problem is that allow_url_include is used somewhere in the code, which is deprecated as of PHP 7.4.]

Re: princed.org (phpBB forum + webpages)

Posted: January 9th, 2021, 5:07 pm
by Norbert
By the way, at this point, Princed's "Files" page at https://www.princed.org/downloads/ is quite outdated.
It, for example, presents SDLPoP 1.16 as that program's latest version.
One basic solution might be start each section with a message that explains where to get the most recent software.
Example:
For the latest SDLPoP, visit https://github.com/NagyD/SDLPoP/releases
Another example:
For the latest MININIM, visit https://oitofelix.github.io/mininim/#download
Yet another one:
For the latest apoplexy, visit https://www.apoplexy.org/d/
etc.

Re: princed.org (phpBB forum + webpages)

Posted: January 10th, 2021, 12:04 am
by David
Norbert wrote: January 5th, 2021, 11:07 pm It appears that attaching images (and possibly other content) currently results in an "Error parsing server response." error message.
Related post by YURA: viewtopic.php?p=31838#p31838
[Edit: I think the problem is that allow_url_include is used somewhere in the code, which is deprecated as of PHP 7.4.]
Yeah, I just run into this bug.

F12 -> Network tab showed this response when I tried to upload the attachment:

Code: Select all

{"data":[{"attach_id":3714,"is_orphan":1,"real_filename":"DOS_loose_above_gate.png","attach_comment":"","filesize":4147}],"download_url":".\/download\/file.php?mode=view&amp;id=3714"}<br />
<b>Deprecated</b>:  Directive 'allow_url_include' is deprecated in <b>Unknown</b> on line <b>0</b><br />

Re: princed.org (phpBB forum + webpages)

Posted: January 10th, 2021, 4:05 am
by atrueprincefanfrom18
PHP 7 has some seriously breaking changes. :(
Let's hope PHP 7 code will not break (at least a lot) in future!

Re: princed.org (phpBB forum + webpages)

Posted: January 10th, 2021, 10:11 pm
by Falcury
David wrote: January 10th, 2021, 12:04 am F12 -> Network tab showed this response when I tried to upload the attachment:

Code: Select all

{"data":[{"attach_id":3714,"is_orphan":1,"real_filename":"DOS_loose_above_gate.png","attach_comment":"","filesize":4147}],"download_url":".\/download\/file.php?mode=view&amp;id=3714"}<br />
<b>Deprecated</b>:  Directive 'allow_url_include' is deprecated in <b>Unknown</b> on line <b>0</b><br />
Looking in file.php, maybe this is the offending line, although I'm not fully sure (line 150):

Code: Select all

include($phpbb_root_path . 'common.' . $phpEx);
I set the PHP handler to version 7.1, hopefully this fixes the problem for now.
At least the error message doesn't seem to show up for me anymore.

Re: princed.org (phpBB forum + webpages)

Posted: January 11th, 2021, 12:49 am
by Norbert
I just had to use the recover password functionality, because the forum no longer accepted my (old) password.
When I then tried (re)setting the password to my old password, it didn't accept it because it lacked certain required character types.

Re: princed.org (phpBB forum + webpages)

Posted: January 11th, 2021, 7:03 am
by Falcury
Norbert wrote: January 11th, 2021, 12:49 am I just had to use the recover password functionality, because the forum no longer accepted my (old) password.
When I then tried (re)setting the password to my old password, it didn't accept it because it lacked certain required character types.
I had the same problem yesterday. (I thought it was just me.) I wonder if it could be related to me changing the PHP handler. I don’t know how that would matter, but it’s the only thing I can think of right now.

Re: princed.org (phpBB forum + webpages)

Posted: January 11th, 2021, 3:09 pm
by atrueprincefanfrom18
Norbert wrote: January 11th, 2021, 12:49 am I just had to use the recover password functionality, because the forum no longer accepted my (old) password.
When I then tried (re)setting the password to my old password, it didn't accept it because it lacked certain required character types.
Same happened to me just now.

And now, the forum is saying current password is incorrect! :lol:

Something's seriously messed up. I guess I'll have to reset the password by email.

Edit: Done now. I noticed the URL has been changed. Maybe that's the reason? Although it doesn't seem right to my programmer's brain.