Page 34 of 55

Re: Report board software problems here

Posted: 2008-12-09 04:18pm
by Coyote
I just did a few random checks of some links in the Announcements section (ie, the names of various Admins and Mods, some Usergroups) and they all went to "Object Not Found" error pages.

I suspect that in the great software change, the various links were broken.

Re: Report board software problems here

Posted: 2008-12-09 04:26pm
by Ace Pace
Every single old profile link was broken as far as I know.

Re: Report board software problems here

Posted: 2008-12-25 02:36pm
by Darth Wong
All of the "Staff Listing" profile links and group links were fixed. It was a simple find/replace operation in a text editor (the ID numbers haven't changed, just the name of the PHP script that's used to list them).

I also updated the software from version 3.0.3 to the latest (3.0.4) just now. As always, if there are any glitches, let me know.

Sorry I haven't been around much lately; the software update was quick and easy so I did it during a break in my schedule, but I've been running around taking care of a lot of things in real-life recently.

Re: Report board software problems here

Posted: 2008-12-25 03:05pm
by Rogue 9
Yeah, old links to profiles will not work. Everything in the Complete Shit List in the Chronicle forum is broken, but I imagine that's not really a high priority.

Re: Report board software problems here

Posted: 2009-01-31 04:27pm
by Braedley
Intermittent connection issues. I dropped the connection a few times just a couple of minutes ago, don't know which end it's on, though.

Re: Report board software problems here

Posted: 2009-02-05 09:48am
by ray245
Do anyone know why I can't post smiles in HoS?

Re: Report board software problems here

Posted: 2009-02-05 01:58pm
by Lord Revan
I think it was disabled since last major update not 100% sure though.

Re: Report board software problems here

Posted: 2009-03-02 12:17am
by saurc
hi,

I am constantly getting 'You cannot search at this time' at odd times while using the search function.

Any idea what is causing this?

Re: Report board software problems here

Posted: 2009-03-02 12:20am
by Ace Pace
saurc wrote:hi,

I am constantly getting 'You cannot search at this time' at odd times while using the search function.

Any idea what is causing this?
You're doing too frequent searchs, see this topic for a better explanation.

Re: Report board software problems here

Posted: 2009-03-02 12:30am
by saurc
Ok, thx.

Re: Report board software problems here

Posted: 2009-04-02 02:49pm
by Havok
Is this what happens when Mike gets drunk? :lol:

Re: Report board software problems here

Posted: 2009-04-02 09:16pm
by CmdrWilkens
Not sure if anyone else is havin this issue but every forum I am visiting is presenting itself a a sub forum of The Colesium. That is as I post this on the top and bottom bars the screen shows that I am currently at:

Board index>>System>>The Imperial Senate>>The Colesium>>Off-Topic

Its been doing that for every forum I've visited tonight (with Off-Topic being replaced by whichever forum I am in).

Re: Report board software problems here

Posted: 2009-04-02 09:31pm
by Havok
Yup. All day long Cmdr. That was what my post was in reference too. You should have seen the board before it was fixed. It was anarchy.

Re: Report board software problems here

Posted: 2009-04-02 10:22pm
by Darth Wong
CmdrWilkens wrote:Not sure if anyone else is havin this issue but every forum I am visiting is presenting itself a a sub forum of The Colesium. That is as I post this on the top and bottom bars the screen shows that I am currently at:

Board index>>System>>The Imperial Senate>>The Colesium>>Off-Topic

Its been doing that for every forum I've visited tonight (with Off-Topic being replaced by whichever forum I am in).
It's a lingering side-effect of the fuckup that took place when GR killed SUPER-INTELLIGENT DISCUSSION WORLD, aka SPAMWORLD. Forums were moved all over the place. It was a mess. I managed to get all the forums back where they belong, but the links at the top of the screen are still fucked up and I'm not sure how to fix them. If anyone has any ideas, I'm open to suggestions.

Re: Report board software problems here

Posted: 2009-04-06 12:50am
by fuzzymillipede
My post count has disappeared. Not that I had that much to begin with, but what gives?

Re: Report board software problems here

Posted: 2009-04-06 02:27pm
by Starglider
Darth Wong wrote:I managed to get all the forums back where they belong, but the links at the top of the screen are still fucked up and I'm not sure how to fix them. If anyone has any ideas, I'm open to suggestions.
The problem is most likely that the forum_parents field in the phpbb_forums table has become corrupted. This field is only used for secondary navigation elements, e.g. the 'breadcrumbs' (as phpBB3 calls them) at the top of the page. If you could fire up your SQL client, execute 'SELECT forum_id, parent_id, forum_parents, forum_name, forum_type FROM phpbb_forums' and dump the results here I should be able to give you an SQL script to fix the problem.

Re: Report board software problems here

Posted: 2009-04-06 06:11pm
by Darth Wong
OK, I'm attaching a text file of the dump:

Re: Report board software problems here

Posted: 2009-04-06 06:34pm
by Starglider
Darth Wong wrote:OK, I'm attaching a text file of the dump:
That seems straightforward enough (those are serialised PHP arrays). These commands should fix the problem;

Code: Select all

UPDATE phpbb_forums SET forum_parents = 'a:1:{i:56;a:2:{i:0;s:7:"Gallery";i:1;i:0;}}' WHERE forum_id = 12 OR forum_id = 40 OR forum_id = 51
UPDATE phpbb_forums SET forum_parents = 'a:1:{i:55;a:2:{i:0;s:11:"Non-Fiction";i:1;i:0;}}' WHERE forum_id = 5 OR forum_id = 7 OR forum_id = 14
UPDATE phpbb_forums SET forum_parents = 'a:1:{i:55;a:2:{i:0;s:11:"Non-Fiction";i:1;i:0;}}' WHERE forum_id = 22 OR forum_id = 24 OR forum_id = 38

Re: Report board software problems here

Posted: 2009-04-06 07:52pm
by Havok
Not a problem or anything, just me being anal really, but would it be possible to center the Avatars and Titles under the user names.

Re: Report board software problems here

Posted: 2009-04-08 05:14pm
by Braedley
But not all the old themes had the avatar centred (Millennium Falcon for example).

Re: Report board software problems here

Posted: 2009-04-08 06:25pm
by Havok
Duh. Forgot there was more than just one board theme. :D
MF is all I have ever used.

Re: Report board software problems here

Posted: 2009-04-09 10:24am
by Darth Wong
It worked! I didn't run it right away because I wanted to create a copy of the board to try it on first (and I was very busy at work), but I tried it on the board copy and it worked, so I applied it here and it worked too. Thanks, Starglider.

Re: Report board software problems here

Posted: 2009-04-09 01:50pm
by Starglider
You're welcome. At some point I'd like to convert those mods (e.g. runoff voting) I made for the old code base to phpBB3, so you can have another try at applying them to the board. Currently though I'm kind of snowed under with work programming and not so enthusiastic about doing more in my free time.

Re: Report board software problems here

Posted: 2009-04-16 06:18am
by Dominus Atheos
When I do a search for "View your posts" and click on page two it tells me I have to wait before doing another search, even though it's the same one.

Re: Report board software problems here

Posted: 2009-05-18 04:47am
by Xon
For some reason I keep getting logged off when opening a new browser session. Looking at my ISP connection history, it doesn't look like my IP has changed during this time (a few times today).

That said, it is quite anoying when my IP changes and I need to relogin.