Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4255
Latest: andreios
New This Month: 3
New This Week: 1
New Today: 0
Stats
Total Posts: 43259
Total Topics: 7518
Most Online Today: 202
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 180
Total: 180

Author Topic: [Mod]Pretty Urls  (Read 2298 times)

0 Members and 1 Guest are viewing this topic.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
[Mod]Pretty Urls
« on: July 26, 2022, 06:47:06 pm »
Pretty Urls



https://www.smfhacks.com/index.php?action=downloads;sa=view;down=235

Pretty Urls

Pretty URLs is a URL management package for Simple Machine Forums (SMF).

It is simple, powerful, extensible and free. Most of all, it is pretty! Its main purpose is to rewrite the important SMF URLs, like these:

http://domain.com/board/topic/
http://domain.com/profile/user/
http://domain.com/unreadreplies/

Pretty URLs will work with SMF 2.1.x, SMF 2.0x, SMF 1.1.x It requires an Apache webserver with support for mod_rewrite and .htaccess files.
« Last Edit: August 28, 2023, 03:48:03 pm by SMFHacks »
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline [chrisB]

  • Member
  • *
  • Posts: 33
    • View Profile
Re: [Mod]Pretty Urls
« Reply #1 on: December 11, 2022, 05:04:58 pm »
How does this mod handle updating username changes?

I had to uninstall it in order for the profile to update to the correct URL, then reinstall Pretty URL's.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: [Mod]Pretty Urls
« Reply #2 on: December 11, 2022, 05:16:20 pm »
Depends on pretty urls caching I believe. Otherwise it should use the new one.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline [chrisB]

  • Member
  • *
  • Posts: 33
    • View Profile
Re: [Mod]Pretty Urls
« Reply #3 on: December 11, 2022, 07:47:31 pm »
I noticed the maintenance side of the plugin, I assume running that would've resolve the URL issue? I don't think I have anything caching though.

I've removed the "index.php" so that it doesn't show. Would you be able to share a corrected htaccess entry?

Removing it has caused the categories not to load, they throw a 404 page error if I recall right. Looking at the htaccess file, I see it has 'index.php' within it a lot but I wouldn't know what to amend.

Thank you for your time.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: [Mod]Pretty Urls
« Reply #4 on: December 11, 2022, 08:33:30 pm »
The default is the following but actions rewriting varies based on mods installed
Code: [Select]
# PRETTYURLS MOD BEGINS
# Pretty URLs mod
# https://www.smfhacks.com/prettyurls-seo-pro.php
# .htaccess file generated automatically on: December 11, 2022, 20:32

RewriteEngine on
RewriteBase /forums

# Rules for: profiles
RewriteRule ^profile/([^/]+)/?$ ./index.php?pretty;action=profile;user=$1 [L,QSA]

# Rules for: actions
RewriteRule ^(agreement|acceptagreement|activate|admin|announce|attachapprove|buddy|calendar)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(clock|collapse|coppa|credits|deletemsg|display|dlattach|editpoll)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(editpoll2|oasl|oasl_registration|oasl_callback|emailuser|findmember|groups|help)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(forumssl|downloads|helpadmin|im|jseditor|jsmodify|jsoption|lock)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(lockvoting|login|login2|logout|markasread|mergetopics|mlist|moderate)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(modifycat|modifykarma|movetopic|movetopic2|notify|notifyboard|notifyannouncements|openidreturn)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(pm|post|post2|printpage|profile|quotefast|quickmod|quickmod2)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(recent|register|register2|join|join2|reminder|removepoll|removetopic2)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(reporttm|requestmembers|restoretopic|search|search2|sendtopic|smstats|suggest)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(spellcheck|splittopics|stats|sticky|theme|trackip|about:mozilla|about:unknown)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(unread|unreadreplies|verificationcode|viewprofile|vote|viewquery|viewsmfile|who)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(\.xml|xmlhttp|forum)/?$ ./index.php?pretty;action=$1 [L,QSA]

# Rules for: boards
RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/?$ ./index.php?pretty;board=$1.0 [L,QSA]
RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([0-9]*)/?$ ./index.php?pretty;board=$1.$2 [L,QSA]

# Rules for: topics
RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([-_!~*'()$a-zA-Z0-9]+)/?$ ./index.php?pretty;board=$1;topic=$2.0 [L,QSA]
RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([-_!~*'()$a-zA-Z0-9]+)/([0-9]*|msg[0-9]*|new)/?$ ./index.php?pretty;board=$1;topic=$2.$3 [L,QSA]

# PRETTYURLS MOD ENDS
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline [chrisB]

  • Member
  • *
  • Posts: 33
    • View Profile
Re: [Mod]Pretty Urls
« Reply #5 on: December 12, 2022, 08:29:49 am »
Thanks, after messing around with a test site I figured out what I was doing wrong. I appreciate your help with this.

Offline [chrisB]

  • Member
  • *
  • Posts: 33
    • View Profile
Re: [Mod]Pretty Urls
« Reply #6 on: December 27, 2022, 07:59:02 am »
I decided to upgrade to the pro version of the Pretty URLs, but upon installing I have hit errors.

[Tue Dec 27 08:54:58.010850 2022] [lsapi:error] [pid 6328] [client 114.119.137.190:42323] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/community/profile/?u=12%3BPHPSESSID%3D39dd5c7af7e2140b46299d8a0e65ceca
[Tue Dec 27 08:54:53.926228 2022] [lsapi:error] [pid 6745] [client 135.181.56.42:45607] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/
[Tue Dec 27 08:54:53.414783 2022] [lsapi:error] [pid 6867] [client 135.181.56.42:45542] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/
[Tue Dec 27 08:54:52.926509 2022] [lsapi:error] [pid 6263] [client 135.181.56.42:45463] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: http://poetryartonline.com
[Tue Dec 27 08:54:41.374605 2022] [lsapi:error] [pid 6745] [client 114.119.152.114:50449] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/community/general-art/?sort=views%3BPHPSESSID%3Da060fb790e0b749d5e569845cf6e7145
[Tue Dec 27 08:51:50.460769 2022] [lsapi:error] [pid 7188] [client 114.119.151.74:31577] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/community/recent/?start=80%3BPHPSESSID%3D8bccd01036b8dfa5128761e38b2d55ff
[Tue Dec 27 08:51:29.111219 2022] [lsapi:error] [pid 6263] [client 98.175.31.195:45669] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/
[Tue Dec 27 08:51:21.421968 2022] [lsapi:error] [pid 6870] [client 103.219.21.43:47006] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/index.php?action=admin;area=packages;sa=install2;package=pretty_urls_seo_pro.zip;pid=0
[Tue Dec 27 08:51:15.461818 2022] [lsapi:error] [pid 7188] [client 23.175.32.11:58633] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/index.php?board=7.0
[Tue Dec 27 08:51:14.382394 2022] [lsapi:error] [pid 6325] [client 103.219.21.43:47008] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/index.php?action=admin;area=packages;sa=install2;package=pretty_urls_seo_pro.zip;pid=0
[Tue Dec 27 08:51:12.403102 2022] [lsapi:error] [pid 6328] [client 185.220.100.255:10344] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/index.php?board=6.0
[Tue Dec 27 08:51:09.710495 2022] [lsapi:error] [pid 7245] [client 185.220.100.255:5022] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/index.php?board=5.0
[Tue Dec 27 08:51:08.024640 2022] [lsapi:error] [pid 6325] [client 185.220.100.255:19090] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/community/
[Tue Dec 27 08:51:06.515266 2022] [lsapi:error] [pid 7188] [client 185.220.100.255:9472] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/index.php?action=login
[Tue Dec 27 08:37:07.861338 2022] [authz_core:error] [pid 6665] [client 192.126.225.225:43220] AH01630: client denied by server configuration: /home/poetryar/public_html/error_log, referer: http://poetryartonline.com
[Tue Dec 27 08:28:12.722763 2022] [lsapi:error] [pid 6307] [client 103.219.21.43:43792] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php74/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:26:51.292617 2022] [lsapi:error] [pid 6018] [client 103.219.21.43:32340] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:26:50.062538 2022] [lsapi:error] [pid 6016] [client 103.219.21.43:32088] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:26:48.794812 2022] [lsapi:error] [pid 6012] [client 103.219.21.43:28352] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:26:03.230855 2022] [lsapi:error] [pid 6014] [client 103.219.21.43:23202] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:23:26.829166 2022] [lsapi:error] [pid 5708] [client 103.219.21.43:62440] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:22:37.763028 2022] [lsapi:error] [pid 5370] [client 114.119.150.2:32285] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/community/profile/?u=5%3Barea%3Dsummary%3BPHPSESSID%3Da802019a73b33187059b6af14d9584b4
[Tue Dec 27 08:22:13.835504 2022] [lsapi:error] [pid 4522] [client 103.219.21.43:50596] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: http://poetryartonline.com/
[Tue Dec 27 08:22:13.108254 2022] [lsapi:error] [pid 5769] [client 103.219.21.43:50440] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:22:12.823618 2022] [lsapi:error] [pid 5370] [client 103.219.21.43:50364] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: http://poetryartonline.com/
[Tue Dec 27 08:22:12.623733 2022] [lsapi:error] [pid 5708] [client 103.219.21.43:50262] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:22:12.300169 2022] [lsapi:error] [pid 5595] [client 103.219.21.43:50222] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:22:11.912541 2022] [lsapi:error] [pid 5769] [client 103.219.21.43:50142] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: http://poetryartonline.com/
[Tue Dec 27 08:22:11.801448 2022] [lsapi:error] [pid 5370] [client 103.219.21.43:49952] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/
[Tue Dec 27 08:22:11.689616 2022] [lsapi:error] [pid 5870] [client 103.219.21.43:50056] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/
[Tue Dec 27 08:18:04.876180 2022] [lsapi:error] [pid 5370] [client 103.219.21.43:12996] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:17:55.906752 2022] [lsapi:error] [pid 5709] [client 103.219.21.43:13012] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:17:48.856530 2022] [lsapi:error] [pid 4685] [client 103.219.21.43:12994] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/?action=admin;area=packages;sa=install2;package=pretty_urls_seo_pro.zip;pid=0
[Tue Dec 27 08:16:02.441689 2022] [lsapi:error] [pid 5001] [client 54.36.149.89:15647] [host www.poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:15:51.508909 2022] [lsapi:error] [pid 5498] [client 114.119.128.233:50751] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/community/profile/?u=4%3BPHPSESSID%3Db16fa64648b9206bf8109dfd6553bab5
[Tue Dec 27 08:15:15.118675 2022] [lsapi:error] [pid 4685] [client 114.119.135.212:34091] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/community/profile/?u=4%3Barea%3Dsummary%3BPHPSESSID%3D8460298bdf25b135c47547480039d02c
[Tue Dec 27 08:14:18.297588 2022] [lsapi:error] [pid 4216] [client 135.181.56.42:47461] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com
[Tue Dec 27 08:14:17.763492 2022] [lsapi:error] [pid 5370] [client 135.181.56.42:47393] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com
[Tue Dec 27 08:14:17.239976 2022] [lsapi:error] [pid 4686] [client 135.181.56.42:47311] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: http://poetryartonline.com
[Tue Dec 27 08:14:12.346493 2022] [lsapi:error] [pid 5370] [client 185.191.171.18:23318] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:14:11.533462 2022] [lsapi:error] [pid 4686] [client 54.36.148.56:26533] [host www.poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:14:10.572722 2022] [lsapi:error] [pid 4522] [client 103.219.21.43:46126] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/?action=admin;area=packages;sa=install2;package=pretty_urls_seo_pro.zip;pid=0
[Tue Dec 27 08:13:51.610383 2022] [lsapi:error] [pid 5001] [client 103.219.21.43:45536] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/?action=admin;area=packages;sa=install2;package=pretty_urls_seo_pro.zip;pid=0
[Tue Dec 27 08:13:41.289293 2022] [lsapi:error] [pid 5498] [client 103.219.21.43:44396] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:13:32.766039 2022] [lsapi:error] [pid 5494] [client 103.219.21.43:43798] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:13:27.528233 2022] [lsapi:error] [pid 4522] [client 103.219.21.43:43202] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n
[Tue Dec 27 08:13:23.012865 2022] [lsapi:error] [pid 4686] [client 103.219.21.43:42992] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/?action=admin;area=packages;sa=install2;package=pretty_urls_seo_pro.zip;pid=0
[Tue Dec 27 08:13:21.926752 2022] [lsapi:error] [pid 4216] [client 103.219.21.43:42990] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/?action=admin;area=packages;sa=install2;package=pretty_urls_seo_pro.zip;pid=0
[Tue Dec 27 08:13:21.441604 2022] [lsapi:error] [pid 5498] [client 114.119.140.221:57689] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/community/profile/?u=4%3BPHPSESSID%3Dee8edf8343a5da5721dc77a098055705
[Tue Dec 27 08:13:18.603374 2022] [lsapi:error] [pid 5494] [client 103.219.21.43:38116] [host poetryartonline.com] Backend fatal error: PHP Fatal error:  require_once(): Failed opening required '/PrettyUrls-Filters.php' (include_path='.:/opt/cpanel/ea-php73/root/usr/share/pear') in /home/poetryar/public_html/Sources/QueryString.php on line 713\n, referer: https://poetryartonline.com/?action=admin;area=packages;sa=install2;package=pretty_urls_seo_pro.zip;pid=0

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: [Mod]Pretty Urls
« Reply #7 on: December 27, 2022, 09:55:25 am »
Attach your Sources/QueryString.php file

And also check that PrettyUrls-Filters.php is in sources folder


 
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline [chrisB]

  • Member
  • *
  • Posts: 33
    • View Profile
Re: [Mod]Pretty Urls
« Reply #8 on: December 27, 2022, 10:29:31 am »
Yes, the file is in my sources folder.

When I proceeded to install, there was a lot of warnings about tests failing.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: [Mod]Pretty Urls
« Reply #9 on: December 27, 2022, 10:56:03 am »
That would do it. I would install the mod in most cases if that happened.
Here is updated file
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline [chrisB]

  • Member
  • *
  • Posts: 33
    • View Profile
Re: [Mod]Pretty Urls
« Reply #10 on: December 27, 2022, 11:43:31 am »
I don't have permission to download the file. ☺️

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: [Mod]Pretty Urls
« Reply #11 on: December 27, 2022, 11:46:41 am »
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/
Agree Agree x 1 View List

Offline [chrisB]

  • Member
  • *
  • Posts: 33
    • View Profile
Re: [Mod]Pretty Urls
« Reply #12 on: December 27, 2022, 12:50:25 pm »
I can view my site now, but I see no modification inside my ACP.

This is how it looked when I installed the mod.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: [Mod]Pretty Urls
« Reply #13 on: December 27, 2022, 01:36:33 pm »
That's way too many failures It looks like it is trying to install the 2.0 version instead of 2.1
Do you have emulation enabled for 2.0?
I would uninstall it for sure.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline [chrisB]

  • Member
  • *
  • Posts: 33
    • View Profile
Re: [Mod]Pretty Urls
« Reply #14 on: December 27, 2022, 02:09:06 pm »
I don't believe so. I'm still getting used to using SMF, but I haven't enabled any emulation. I uninstalled the mod, my site has a 500 page error again. It's been going crazy over the last few days.

On a test site I have, the installation does the same thing.

PS. I did re-upload the unedited file from above.


How do I get the installer to install the right version?
« Last Edit: December 27, 2022, 04:47:17 pm by [chrisB] »

 

Related Topics

  Subject / Started by Replies Last post
4 Replies
6372 Views
Last post September 11, 2010, 06:21:10 am
by Wickedgood
6 Replies
7366 Views
Last post July 15, 2018, 04:14:19 pm
by SMFHacks
7 Replies
4237 Views
Last post March 07, 2019, 11:23:09 pm
by SMFHacks
11 Replies
2494 Views
Last post February 01, 2023, 05:18:47 pm
by [chrisB]
1 Replies
1508 Views
Last post May 06, 2023, 03:30:11 pm
by SMFHacks

+- Recent Topics

No thumbnails on new uploads by SMFHacks
March 27, 2024, 02:10:41 pm

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

an idea for new mod (( content type with different display )) by SMFHacks
February 27, 2024, 01:36:27 pm

[Mod] RSS Feed Poster by SMFHacks
February 27, 2024, 11:57:18 am

find duplicate pictures by fvlog19
February 14, 2024, 02:22:40 pm

Error uploading video. by SMFHacks
February 08, 2024, 02:04:16 pm

Gallery icon as last added image by fvlog19
February 01, 2024, 01:04:56 pm

Powered by EzPortal