Add Poll
 
Options: Text Color Split Pie
 
 
 
 
 
 
 
 
Poll Comment:
Max 500 characters. Remaining characters:
days and minutes. Leave it blank if you don't want to set it now.

Please type the characters exactly as they appear in the image,
without the first 2 and last 2 characters.
The characters must be typed in the same order,
and they are case-sensitive.
Open Preview Preview

You can resize the textbox by dragging the right or bottom border.
Off Topic Comment Insert Spoiler
Insert Hyperlink Insert FTP Link Insert Image Insert E-mail Insert Media Insert Table Insert Table Row Insert Table Column Insert Horizontal Rule Insert Teletype Insert Code Insert Quote Edited Superscript Subscript Insert List /me - my name Insert Marquee Insert Timestamp No Parse
Bold Italicized Underline Insert Strikethrough Highlight
                       
Change Text Color
Insert Preformatted Text Left Align Centered Right Align
resize_wb
resize_hb







Max 5000 characters. Remaining characters:
Text size: %
More Smilies
View All Smilies
Collapse additional features Collapse/Expand additional features Smiley Wink Cheesy Grin Angry Sad Shocked Cool Huh Roll Eyes Tongue Embarrassed Lips Sealed Undecided Kiss Cry
Topic Summary - Displaying 15 post(s). Click here to show all
Posted by: Dandello
Posted on: Sep 15th, 2017 at 4:56pm
I'm fairly confident the 1x converter will work on big boards. I'm hoping that at some point someone will volunteer a big 1x board for testing.
Posted by: pyragony54
Posted on: Sep 15th, 2017 at 3:47pm
I can not help you YaBB 1, I do not know. XTC may be it. Write him an email. If he can, he will help you. More, I can not disclose.
Posted by: Dandello
Posted on: Sep 15th, 2017 at 4:00am
I have a version of 1sp1.3 running for checking mods, so I know the basic data gets imported. I just have to trust that the loops behave like they're supposed to when there's big data.

Plus there's the complication of the Mods - the original converter has references to mods that are no longer around and without those mods, it's hard to test whether that data get imported properly.
Posted by: pyragony54
Posted on: Sep 15th, 2017 at 3:11am
A 1x forum has actually no more. I know no one at all.
Posted by: Dandello
Posted on: Sep 14th, 2017 at 6:40pm
Just uploaded all the current changes to the base 2.7 SVN. Unfortunately, I don't have access to a big 1x board to test on. (Plus I can't get the 1x attachments mod to work at the moment so I can't test that either.  Cry )

Now to take a break since I've been looking at code since 5 AM.
Posted by: pyragony54
Posted on: Sep 14th, 2017 at 5:44pm
Smiley
Works
Posted by: Dandello
Posted on: Sep 14th, 2017 at 5:22pm
On #201 - In Sources/DateTime.pm find
Code (Perl)
Select All
    if ( $newformat =~ m/\A(.*?)\s*$maintxt{'107'}\s*(.*?)\Z/ixsm ) { 



and replace with
Code (Perl)
Select All
    if ( $newformat && $newformat =~ m/\A(.*?)\s*$maintxt{'107'}\s*(.*?)\Z/ixsm ) { 



There are at least 2 of these.
Posted by: pyragony54
Posted on: Sep 14th, 2017 at 3:57pm
Smiley  Works.

Dandello wrote on Sep 14th, 2017 at 3:11pm:
And you not being a coder is a good thing.
                     


At least I can not go wrong. I can html and that's it already.   Wink

Forget not answer # 201.
Posted by: Dandello
Posted on: Sep 14th, 2017 at 3:11pm
Try the one in the zip. Some of these things are touchier than others.

And you not being a coder is a good thing.
Posted by: pyragony54
Posted on: Sep 14th, 2017 at 1:41pm
But I'm not a coder.
PS: Does not work.
Posted by: Dandello
Posted on: Sep 14th, 2017 at 12:48pm
Make sure Import imported your 'number of attachments' - Go to Admin Center -> Advanced Settings -> File Attachments and set it.

But I'm looking into it.

Edited:
Smiley In Post.pm find
Code (Perl)
Select All
                    $my_att_a = qq~ 


and replace with
Code (Perl)
Select All
                    $my_att_a .= qq~ 



It's in two places around line 1316 and line 1332.

And this is why people other than coders need to test things.  Smiley
Posted by: pyragony54
Posted on: Sep 14th, 2017 at 7:21am
Attachment file does not work correctly. There should be 6 pictures to be uploaded.
Posted by: pyragony54
Posted on: Sep 14th, 2017 at 6:48am
pyragony54 wrote on Sep 14th, 2017 at 6:33am:
Also no error messages within the forum. Everything looks good.


But still found something. By clicking on the birthday list.

Quote:
An Error Has Occurred. Use of uninitialized value $newformat in pattern match (m//) at Sources/DateTime.pm line 624.
Posted by: pyragony54
Posted on: Sep 13th, 2017 at 5:59pm
Works  Smiley
Posted by: Dandello
Posted on: Sep 13th, 2017 at 1:29pm
I'm not surprised it cleared after refreshing the page - on the refresh something was written to the users.log.

Looking into a fix that doesn't break anything else.

Edited:
In BoardIndex.pm find
Code (Perl)
Select All
        my ( $name, $date1, $last_ip, $last_host, $boardv ); 


replace with
Code (Perl)
Select All
        my ( $name, $date1, $last_ip, $last_host, $boardv ) = ( q{}, q{}, q{}, q{}, q{} );
  



Find
Code (Perl)
Select All
            $boardv ||= q{}; 

and remove it (it's extra now)
Then find
Code (Perl)
Select All
                    $users .= "&nbsp;<i>($user_ip)</i>";
                     $guestlist =~ s/<i>$lookup_ip<\/i>,\s//oxsm; 


and add above it
Code (Perl)
Select All
$lookup_ip ||= q{}; 



These changes fixed the problem on my testing install. (Reproducible errors are the best kind of errors.)