[SOLVED] phpBB expert wanted to fix some built-in links

General discussion on all other topics under the sun.

Moderator: Renato

Post Reply
guanlisheng
Developer
Posts: 381
Joined: Wed Dec 21, 2011 5:58 am
Are you a spam bot?: No
Location: China
Contact:

[SOLVED] phpBB expert wanted to fix some built-in links

Post by guanlisheng »

guys,
we found some key and fundamental links are not working well for quite a while and hope some one would help here
Lisheng Guan,
Developer of MoneyManagerEX (http://moneymanagerex.org)
whall3y
Developer
Posts: 343
Joined: Fri Aug 21, 2020 5:44 pm
Are you a spam bot?: No

Re: phpBB expert wanted to fix some built-in links

Post by whall3y »

Probably a routing issue. Have you checked the .htaccess file?
guanlisheng
Developer
Posts: 381
Joined: Wed Dec 21, 2011 5:58 am
Are you a spam bot?: No
Location: China
Contact:

Re: phpBB expert wanted to fix some built-in links

Post by guanlisheng »

here you go some piece of the .htaccess under the forum root directory. anything abnormal?

Code: Select all

<IfModule mod_rewrite.c>
RewriteEngine on

#
# Uncomment the statement below if URL rewriting doesn't
# work properly. If you installed phpBB in a subdirectory
# of your site, properly set the argument for the statement.
# e.g.: if your domain is test.com and you installed phpBB
# in http://www.test.com/phpBB/index.php you have to set
# the statement RewriteBase /phpBB/
#
#RewriteBase /

#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]

#
# The following 3 lines will rewrite URLs passed through the front controller
# to not require app.php in the actual URL. In other words, a controller is
# by default accessed at /app.php/my/controller, but can also be accessed at
# /my/controller
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ app.php [QSA,L]

#
# If symbolic links are not already being followed,
# uncomment the line below.
# http://anothersysadmin.wordpress.com/2008/06/10/mod_rewrite-forbidden-403-with-apache-228/
#
#Options +FollowSymLinks
</IfModule>

# Apache content negotation tries to interpret non-existent paths as files if
# MultiViews is enabled. This will however cause issues with paths containg
# dots, e.g. for the cron tasks
<IfModule mod_negotiation.c>
        Options -MultiViews
</IfModule>
Lisheng Guan,
Developer of MoneyManagerEX (http://moneymanagerex.org)
User avatar
Renato
MVP User
Posts: 674
Joined: Mon Apr 25, 2011 7:36 pm
Are you a spam bot?: No
Location: near Zurich

Re: phpBB expert wanted to fix some built-in links

Post by Renato »

Hello Lisheng
the file faq.html was overwritten by the forum main page. :twisted:
Renato Forum Administrator
guanlisheng
Developer
Posts: 381
Joined: Wed Dec 21, 2011 5:58 am
Are you a spam bot?: No
Location: China
Contact:

Re: phpBB expert wanted to fix some built-in links

Post by guanlisheng »

can you elaborate? I assume you are referring to the result instead of the source code.

also, do you have any idea how to fix it?
Lisheng Guan,
Developer of MoneyManagerEX (http://moneymanagerex.org)
User avatar
Renato
MVP User
Posts: 674
Joined: Mon Apr 25, 2011 7:36 pm
Are you a spam bot?: No
Location: near Zurich

Re: phpBB expert wanted to fix some built-in links

Post by Renato »

the MMEX phpbb version is 3.3.0 maybe an upgrade to the latest version 3.3.2 will help

https://www.phpbb.com/community/viewtop ... &t=2573416
Renato Forum Administrator
guanlisheng
Developer
Posts: 381
Joined: Wed Dec 21, 2011 5:58 am
Are you a spam bot?: No
Location: China
Contact:

Re: phpBB expert wanted to fix some built-in links

Post by guanlisheng »

Just performed the upgrade smoothly and nothing changes.
Lisheng Guan,
Developer of MoneyManagerEX (http://moneymanagerex.org)
guanlisheng
Developer
Posts: 381
Joined: Wed Dec 21, 2011 5:58 am
Are you a spam bot?: No
Location: China
Contact:

Re: phpBB expert wanted to fix some built-in links

Post by guanlisheng »

if the two links fixed, especially for the https://forum.moneymanagerex.org/app.php/feed, we can easily sync/connect our forum and homesite.
Lisheng Guan,
Developer of MoneyManagerEX (http://moneymanagerex.org)
guanlisheng
Developer
Posts: 381
Joined: Wed Dec 21, 2011 5:58 am
Are you a spam bot?: No
Location: China
Contact:

Re: [SOLVED] phpBB expert wanted to fix some built-in links

Post by guanlisheng »

was due to /etc/nginx/sites-available/forum.moneymanagerex.conf and now we can see our hot topic in the homesite as well.
WX20201108-001408@2x.png
WX20201108-001408@2x.png (108.9 KiB) Viewed 3316 times
Lisheng Guan,
Developer of MoneyManagerEX (http://moneymanagerex.org)
User avatar
Renato
MVP User
Posts: 674
Joined: Mon Apr 25, 2011 7:36 pm
Are you a spam bot?: No
Location: near Zurich

Re: [SOLVED] phpBB expert wanted to fix some built-in links

Post by Renato »

gratulation
Renato Forum Administrator
whall3y
Developer
Posts: 343
Joined: Fri Aug 21, 2020 5:44 pm
Are you a spam bot?: No

Re: [SOLVED] phpBB expert wanted to fix some built-in links

Post by whall3y »

Glad it's fixed. Well done.
Post Reply