myBB upgrade thread

Watashiwa

Administrator
Staff member
#76
Lord Raa said:
Here's a prime example: http://thefanfictionforum.net/showthread.php?tid=17880&pid=1276296#pid1276296

But if nothing can be done, I am working on something and as such will update that particular fic with a reposting.
Ah yeah, I'm going to try and fix that myself tonight. Cross fingers.
 

seitora

Well-Known Member
#77
Someone mentioned we're the largest board on icyboards, but how large are we as the total? Are we like larger than everyone else combined, 30% of the total, etc?...
 

da_fox2279

California Crackpot
#78
PCHeintz72 said:
Sigh... trashed response, 2nd try

da_fox2279 said:
@Wata: When I try replying to a post, the board show the quoted post but not my reply. Not sure if that's been brought up before (I think it has), but I can't remember if it was answered.
I'm guessing you, like me, are using IE. I'm having some of those same issues. Hence the list Wata has above. It seems IE has far more issues with the forum upgrades than other browsers.
Oh, wonderful. Ah well. Thanks, PC.
 

Watashiwa

Administrator
Staff member
#79
Augh. Definitely an encoding issue on the quote marks. I THINK it's trying to reference left and right leaning quote marks, but the system only recognizes it in 20% of all cases. I'm got a find/replace string with all five messed up characters in Raa's fic but it hasn't solved the actual problem.

Adding this to my "Oh god help me" list for icyboards.
 

Shirotsume

Not The Goddamn @dmin
#80
I'm guessing you didn't save the auto-resize code I made for images?

Because images are destroying the board tables.
 

NuitTombee

Immortal Capo
#81
Shirotsume said:
I'm guessing you didn't save the auto-resize code I made for images?

Because images are destroying the board tables.
What do you mean? The images seem to stay the max width of the post or smaller.
 

Watashiwa

Administrator
Staff member
#82
Shirotsume said:
I'm guessing you didn't save the auto-resize code I made for images?

Because images are destroying the board tables.
Just checked and the board TRIED to port the code, without actually porting any of it. Re-send it to me and I'll be able to slot it back in.
 
#83
I've sort of figured out why the garbage characters are happening, the board is using UTF-8, I think extended which should really be called UTF-16. Now double quotes are two different characters, LEFT DOUBLE QUOTATION MARK and RIGHT DOUBLE QUOTATION MARK with hex values of 201C and 201D, astute readers will notice that these are 2 bytes longs. So what's happening is that these are read out of the old database wrong for some reason 201C becomes 00E2 0080 009C. I can explain the last two, their names are CONTROL and STRING TERMINATOR but not the first one
 

TC_Hazard

Well-Known Member
#84
Okay so, weird thing. Tried to post a story.

When I pasted it, the font size grew tiny. Then I switched the size to Size 2. I hit preview... and my font size became tiny again. Plus, with a bunch of spaces between paragraphs added for some reason. I tried switching to Size 3 and that worked, but it keeps happening whenever I try switching the size to 2.
 

Watashiwa

Administrator
Staff member
#85
gemmaethanwhitaker said:
I've sort of figured out why the garbage characters are happening, the board is using UTF-8, I think extended which should really be called UTF-16. Now double quotes are two different characters, LEFT DOUBLE QUOTATION MARK and RIGHT DOUBLE QUOTATION MARK with hex values of 201C and 201D, astute readers will notice that these are 2 bytes longs. So what's happening is that these are read out of the old database wrong for some reason 201C becomes 00E2 0080 009C. I can explain the last two, their names are CONTROL and STRING TERMINATOR but not the first one
Yep. Ages ago I figured it had to be something like that. Unfortunately there's not much I can do about it; I plugged all the errored quote values into the word filter and it fixed a fourth of them. This is on the list, and I'm posting it to the help forum later tonight.

TC_Hazard said:
Okay so, weird thing. Tried to post a story.

When I pasted it, the font size grew tiny. Then I switched the size to Size 2. I hit preview... and my font size became tiny again. Plus, with a bunch of spaces between paragraphs added for some reason. I tried switching to Size 3 and that worked, but it keeps happening whenever I try switching the size to 2.
Weiiiiiird. Do it again and send me a screencap, would you?
 

Watashiwa

Administrator
Staff member
#87
ankokudaishogun said:
what about a Mobile theme?
Probably my number 2 wish after solving the font thing. Unfortunately, we were using a plugin that created the mobile site and there's no similar plugin for the new site. I WILL be keeping an eye out, and I'll ask around just in case the dev is still around.
 
#89
I've noticed something else, all the garbage characters start with the 00E2 0080 pair, so that's important
 

Shirotsume

Not The Goddamn @dmin
#90
Watashiwa said:
Shirotsume said:
I'm guessing you didn't save the auto-resize code I made for images?

Because images are destroying the board tables.
Just checked and the board TRIED to port the code, without actually porting any of it. Re-send it to me and I'll be able to slot it back in.
I don't have it. What is left?
 

Shirotsume

Not The Goddamn @dmin
#92
So the problem is that mainimage is no longer defined in the CSS.

I'll go figure out what the correct CSS is to get it working again when my internet stops being a bag of dicks.
 

rukia8492

Well-Known Member
#94
here's my fucking issue with the upgrade. it fucking destroyed the damn link to the chat we had. somebody PM my ass a link please cause this is quite frankly this updat was worse bullshit than i had to deal with in my multiple tours in that wonderful hellhole called afghanistan.
 

Shirotsume

Not The Goddamn @dmin
#95
At the risk of sounding like a raging dickbag, it sounds like your deployment was buttersmooth :p
 

PCHeintz72

The Sentient Fanfic Search Engine mk II
#96
On a different note, anyone have any word on when the Win7 64 bit/IE 11 issue with the post screen is going to be corrected.... where if using quote, then type stuff, then post reply, it dumps what was manually typed and only gives the quotes material... forcing someone whom has not copied the text to the clipboard to edit the post retype it, or or edit the post and repaste it if they have....

It is most annoying. I think I'm up to about a dozen times that has occurred.
 

chronodekar

Obsessively signs his posts
Staff member
#97
rukia8492 said:
here's my fucking issue with the upgrade. it fucking destroyed the damn link to the chat we had. somebody PM my ass a link please cause this is quite frankly this updat was worse bullshit than i had to deal with in my multiple tours in that wonderful hellhole called afghanistan.
Do you mean the link to our IRC chat? I usually use a client, but this should work;

http://irc.lc/lunarnet/tff

-chronodekar
 

Shirotsume

Not The Goddamn @dmin
#98
Watashiwa said:
Here's the expression and the replacement.

\[img\](.*?)\[/img\]


<img class="mainimage" src="$1"></img>

That's it.
iirc, this should do it.

Code:
mainimage {
    display: block;
    max-width:500px;
    max-height:500px;
    width: auto;
    height: auto;
}
Add this to the main css file.

I don't remember if it was 500px, but 500 seems about right.
 

PCHeintz72

The Sentient Fanfic Search Engine mk II
#99
I'm curious on one thing. Did the forum upgrade to 1.8, or 1.8x. I ask as I was poking around on the MyBB site in an attempt to see if I could find anything of use in regards to my issues on this forum after the upgrade. And I discovered that almost exactly a year ago, upon the initial introduction of 1.8, that apparently others were reporting the same problems with 1.8 and IE in regards to the edit box on the post reply screen. I found a thread of them discussing it and they supposedly issued a fix and released it as 1.81.

If it was upgraded to 1.8x, could that 1.81 have been undone at some point by them?

If it was upgraded to only 1.8, then I think we need to go to at least 1.81... I think I found reference to 1.86 as the newest, though it may well be higher.
 

Shirotsume

Not The Goddamn @dmin
We don't get to choose our upgrade level, that's icyboards.


And why on earth are you still using IE? Even Microsoft has deprecated it. At least move to Edge if you're going to have a pisspoor browser.
 
Top