[Bug] Lots of Error - Page not found

The main Forum page gives this, as well as the larger forum sub-groupings. I can browse specific forums, but if I go from somewhere like General to Topic Discussions, I get the error.
 
Funny: site's fine on Chrome on my iPad, but all the links are borked on FF on my WinX machine.
Works fine in Chrome on my desktop. Firefox still showing the cpanel SORRY! page, even after flushing the DNS and pasting working links from Chrome.

(ETA: clearing cache in FF fixed that.)
 
Last edited:

Dave

Staff member
I have an SQL script that I'm going to run. Wish me luck that I don't bork something up.[DOUBLEPOST=1454860369,1454860288][/DOUBLEPOST]
maybe you can put some kind of redirect at https://www.halforums.com to point it back at the main page. I had to do that a long time ago on my tinwhistling website when I dropped the /music from www.tinwhistler.com/music

I had that bookmarked and didn't know the board was up until I checked facebook.
Redirect in. Let's see if that works better than my script idea.
 

Dave

Staff member
I haven't done it yet. Here's the code.

Code:
update [xf_post] set [message] = replace([message],'[https://www.halforums.com]','[https://www.halforums.com]');
Look right to you guys?
 
I have an SQL script that I'm going to run. Wish me luck that I don't bork something up.[DOUBLEPOST=1454860369,1454860288][/DOUBLEPOST]

Redirect in. Let's see if that works better than my script idea.
not working here
[DOUBLEPOST=1454872001][/DOUBLEPOST]
I haven't done it yet. Here's the code.

Code:
update [xf_post] set [message] = replace([message],'[https://www.halforums.com]','[https://www.halforums.com]');
Look right to you guys?
Replace(orig, string1, string2) moves "string1" from the original string and replaces it with "string2". Yours is the same in both places. No change is made. Also, I don't know why your strings are surrounded by []

I'd do this:
Code:
update [xf_post] set [message] = replace([message],'//www.halforums.com/xenforo','//www.halforums.com');
by leaving out the "https:" it'll catch links that are both http and https
 
Link from the emails just return an error when you click them. Just says "Halforums Error - The requested page cannot be found."
 
I still get the page not found error in FF and Safari, but all the forums are accessible. It's just the main page.
 

fade

Staff member
My bookmarks were broken. I noticed that the new site has no "xenforo" in the URL.

EDIT: nevermind, I see that's already been covered. Nevermind, I'll see myself out.
 
My bookmarks were broken. I noticed that the new site has no "xenforo" in the URL.

EDIT: nevermind, I see that's already been covered. Nevermind, I'll see myself out.
Did you notice we used to be Halforum and we're now Halforums? ;)
 
Top