Page Index Toggle Pages: [1]  ReplyAdd Poll Send Topic
Hot Topic (More than 10 Replies) Problems (Read 5497 times)
 
Paste Member Name in Quick Reply Box pyragony54
Language
***
Offline


I Love YaBB!

Posts: 852
Location: Йошкар-Ола
Joined: May 25th, 2014
Gender: Male
Mood: Dead
Zodiac sign: Scorpio
Problems
Dec 1st, 2014 at 10:45am
Mark & QuoteQuote  
Tonight I have my forum updated to 2.6.1 Build 1603.

Thread index simply can not build up. Many forums are for me to zero, although contributions and themes are available.

This issue we had:
Topics Notifications can not rebuild.

@ Dandello

In my forum you've got admin rights. Check this out please themselves.

  

if (idea == 'none') {use (manuals) && (Google | | search)}
if ($ answer == 0) {post (question)}
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2235
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Problems
Reply #1 - Dec 1st, 2014 at 4:19pm
Mark & QuoteQuote  
It appears (at least partly) to be a problem with recreating the forum.totals file.  Cry
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box pyragony54
Language
***
Offline


I Love YaBB!

Posts: 852
Location: Йошкар-Ола
Joined: May 25th, 2014
Gender: Male
Mood: Dead
Zodiac sign: Scorpio
Re: Problems
Reply #2 - Dec 1st, 2014 at 4:23pm
Mark & QuoteQuote  
Be careful, the backup is still on 2.6.0
For the topic structure that is still okay.
But not in the notifications. The still functioned without problems in 2.6.0
  

if (idea == 'none') {use (manuals) && (Google | | search)}
if ($ answer == 0) {post (question)}
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2235
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Problems
Reply #3 - Dec 1st, 2014 at 5:42pm
Mark & QuoteQuote  
The errors in forum.totals were also in the backup I grabbed. It looks like at some point some change in coding really messed up forum.totals (and not just on your forum) and it appears to be specific to 2.6.0 as it isn't messed up here but was on my main offline test site.

To complicate matters, forum.totals doesn't get rebuilt during the rebuild Message Index process. So that's the first thing that needs to get fixed. I'm hoping that will take care of both problems.
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2235
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Problems
Reply #4 - Dec 1st, 2014 at 8:29pm
Mark & QuoteQuote  
Here's a fix to be tested.
In Admin/Maintenance.pm find
Code (Perl)
Select All
    if ($save_moved) { save_moved_file(); } 



Add after
Code (Perl)
Select All
## New forum.totals rebuild ##
     my @newtots = ();
     my @myline1 = ();
     while( ($key, $value) = each %board ) {
         $ftotals = 0;
         fopen ( TOTALS, "<$boardsdir/$key.txt" );
         my @ftotals = <TOTALS>;
         fclose(TOTALS);
         chomp @ftotals;
         $ftotals = @ftotals;
         if ( !$ftotals ) {
             $msgtot = 0;
             $myline1[4] = 'N/A';
             $myline1[0] = q{};
             $myline1[5] = q{};
             $myline1[7]= q{};
             $mesg[0] = q{};
             $messby = 'N/A';
             $msgts = 0;
         }
         else {
             @myline1 = split /[|]/xsm, $ftotals[0];
             $msgtot = 0;
             $msgts = $myline1[8];
             for (@ftotals) {
                 @totalsvars = split /[|]/xsm, $_;
                 $msgtot += $totalsvars[5] + 1;
             }
             fopen ( TOTALSN, "<$datadir/$myline1[0].txt" );
             my @ftotalsn = <TOTALSN>;
             fclose(TOTALSN);
             @mesg =  split /[|]/xsm, $ftotalsn[-1];
             $messby = $myline1[6];
             if ( $messby eq 'Guest') {
                 $messby = $myline1[2];
             }
         }
         push @newtots, qq~$key|$ftotals|$msgtot|$myline1[4]|$messby|$myline1[0]|$myline1[5]|$mesg[0]|$myline1[7]|$msgts\n~;
     }
     fopen ( NTOTALS, ">$boardsdir/forum.totals" );
     print {NTOTALS} @newtots;
     fclose(NTOTALS); 



This will rebuild forum.totals from the rebuilt Message Index during Rebuild Message Index. It's been tested on a small data set and hopefully won't have problems on a big one.
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2235
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Problems
Reply #5 - Dec 1st, 2014 at 9:45pm
Mark & QuoteQuote  
And for the Rebuild Notifications (I'm hoping since I can't test it.)
In Maintenance.pm find
Code (Perl)
Select All
    require Sources::Notify; 


Add above
Code (Perl)
Select All
	my (%members, $sumuser, $sumbo, $sumthr, $sumtotal, $start_time, $exitloop);
  



Find
Code (Perl)
Select All
        my %members = map {/(.*)\t(.*)/xsm} <MEMBNOTIF>; 


replace:
Code (Perl)
Select All
        %members = map {/(.*)\t(.*)/xsm} <MEMBNOTIF>; 


Find:
Code (Perl)
Select All
        my $start_time = <CALCNOTIF>;
         my $sumuser    = <CALCNOTIF>;
         my $sumbo      = <CALCNOTIF>;
         my $sumthr     = <CALCNOTIF>; 


replace
Code (Perl)
Select All
        $start_time = <CALCNOTIF>;
         $sumuser    = <CALCNOTIF>;
         $sumbo      = <CALCNOTIF>;
         $sumthr     = <CALCNOTIF>; 



Find
Code (Perl)
Select All
    my ( $exitloop ); 


replace:
Code (Perl)
Select All
#    my ( $exitloop ); 


I'm fairly certain the problem with Rebuild Notification was a localization issue.
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box pyragony54
Language
***
Offline


I Love YaBB!

Posts: 852
Location: Йошкар-Ола
Joined: May 25th, 2014
Gender: Male
Mood: Dead
Zodiac sign: Scorpio
Re: Problems
Reply #6 - Dec 2nd, 2014 at 3:15am
Mark & QuoteQuote  
Perfect. Both worked. Please take into SVN, so it will not be forgotten.   Smiley
  

if (idea == 'none') {use (manuals) && (Google | | search)}
if ($ answer == 0) {post (question)}
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2235
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Problems
Reply #7 - Dec 2nd, 2014 at 3:31am
Mark & QuoteQuote  
It will be in the next Build. And thanks for reporting it AND letting me dig into your data.
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box pyragony54
Language
***
Offline


I Love YaBB!

Posts: 852
Location: Йошкар-Ола
Joined: May 25th, 2014
Gender: Male
Mood: Dead
Zodiac sign: Scorpio
Re: Problems
Reply #8 - Dec 2nd, 2014 at 7:42am
Mark & QuoteQuote  
No problem, you should only change your password.
But now I have another problem. spell check does not appear, though enabled. I think that makes a mod problems. Maybe I'll find it.
  

if (idea == 'none') {use (manuals) && (Google | | search)}
if ($ answer == 0) {post (question)}
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2235
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Problems
Reply #9 - Dec 2nd, 2014 at 2:46pm
Mark & QuoteQuote  
There's also a problem with changing passwords - I couldn't change mine. (Possibly because of the way the account was set up. You may have to change it by hand editing the vars file.)

And as of Dec 2nd, 2014 at 2:48pm Spell check works fine on FireFox on anti-scam.de.
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box pyragony54
Language
***
Offline


I Love YaBB!

Posts: 852
Location: Йошкар-Ола
Joined: May 25th, 2014
Gender: Male
Mood: Dead
Zodiac sign: Scorpio
Re: Problems
Reply #10 - Dec 2nd, 2014 at 3:58pm
Mark & QuoteQuote  
Upppps. You are right. Even with IE it works. Opera seems to have problems since. I will later time to test a different browser with Google engine. What I find funny though, I'm using the Opera in your forum, as does the spell check.
I think this is a mod trouble (we had the spoiler too).
This is only to find out once my part.
The picture says it out some.


I was able to change my password without problems. Since I will probably be able to do anything.



  

Bild2_013.jpg ( 61 KB | 129 Downloads )

if (idea == 'none') {use (manuals) && (Google | | search)}
if ($ answer == 0) {post (question)}
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2235
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Problems
Reply #11 - Dec 2nd, 2014 at 4:08pm
Mark & QuoteQuote  
Some engines are more sensitive to javascript conflicts that others (although IE is usually the most finicky).  Huh
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box pyragony54
Language
***
Offline


I Love YaBB!

Posts: 852
Location: Йошкар-Ола
Joined: May 25th, 2014
Gender: Male
Mood: Dead
Zodiac sign: Scorpio
Re: Problems
Reply #12 - Dec 2nd, 2014 at 6:03pm
Mark & QuoteQuote  
Yes, I'll find out. I have a very different problem namely this:

Code
Select All
Nicht abgefangene Fehler :
 The 'epoch' parameter ("1371145474[color=#0000ff") to DateTime::from_epoch did not pass regex check at Modules/Params/ValidatePP.pm line 630	Params::Validate::__ANON__('The \'epoch\' parameter ("1371145474[color=#0000ff") to DateT...') called at Modules/Params/ValidatePP.pm line 554 Params::Validate::_validate_one_param('1371145474[color=#0000ff', 'HASH(0x19f0938)', 'HASH(0x12f29c8)', 'The \'epoch\' parameter ("1371145474[color=#0000ff")') called at Modules/Params/ValidatePP.pm line 353	Params::Validate::validate('ARRAY(0x1739cc0)', 'HASH(0x18b6970)') called at Modules/DateTime.pm line 517	DateTime::from_epoch(undef, 'epoch', '1371145474[color=#0000ff') called at Sources/DateTime.pm line 54 main::toffs('1371145474[color=#0000ff', 0) called at Sources/DateTime.pm line 177 main::timeformat('1371145474[color=#0000ff', 0, 0, 0, 1) called at Sources/YaBBC.pm line 131 main::quotemsg('6F666E626D707666030', '1370176935/3#3', '1371145474[color=#0000ff', 'Remainder\x{a}[url=http://anti-scam...') called at Sources/YaBBC.pm line 393	main:CheesyoUBBC() called at Sources/Display.pm line 1347	main:Cheesyisplay() called at YaBB.pl line 226	main::yymain() called at YaBB.pl line 171	eval {...} called at YaBB.pl line 171


 http://anti-scam.de/cgi-bin/yabb2/YaBB.pl?board=Afrika_White_Females&action=&num...1370176935 



The selected thread exists but is not accessible by the mentioned error message. From CPAN (Dave Rolsky) I just get stupid answers. We really should consider whether we need it at all. It was previously without this feature.

I can not open the selected contribution, although it is there. I just get this stupid error message and Google gets this too. It is as if the post did not exist.

The whole DateTime and DateTime::TimeZone would be totally revised. The time I do not take me and go back to local.
  

if (idea == 'none') {use (manuals) && (Google | | search)}
if ($ answer == 0) {post (question)}
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2235
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Problems
Reply #13 - Dec 2nd, 2014 at 6:53pm
Mark & QuoteQuote  
The problem isn't with DateTime - the problem is in the message itself: 
Code
Select All
date=1371145474[color=#0000ff]Remainder 



The problem is inside a quote. The inner color tag doesn't have a close and is being sent to DateTime as part of the time string.  (Line 6 in 1370176935.txt)  I'm trying to figure out exactly how to fix the problem. You may have to hand edit the line.
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2235
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Problems
Reply #14 - Dec 2nd, 2014 at 7:17pm
Mark & QuoteQuote  
Found it -
Code
Select All
date=1371145474]Remainder  



The quote tag wasn't properly closed - probably because the person doing the quoting added or removed other formatting. Close the quote tag, removed the extra color tag, and the message should render.
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box pyragony54
Language
***
Offline


I Love YaBB!

Posts: 852
Location: Йошкар-Ола
Joined: May 25th, 2014
Gender: Male
Mood: Dead
Zodiac sign: Scorpio
Re: Problems
Reply #15 - Dec 2nd, 2014 at 7:25pm
Mark & QuoteQuote  
Thank you, now I see it. I just wonder how such a thing comes to conditions.
I'll look at that in more detail tomorrow morning. I'm too tired for that.
  

if (idea == 'none') {use (manuals) && (Google | | search)}
if ($ answer == 0) {post (question)}
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2235
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Problems
Reply #16 - Dec 2nd, 2014 at 7:36pm
Mark & QuoteQuote  
The poster edited the quoted item. And since the UBBC code appears as code in the textbox, they didn't notice they'd put formatting in the wrong place. They also didn't look at their message in Preview.

I figure we could build a check to make sure that messages don't throw errors before being saved. Or remind people to preview their messages before posting. Wink
Preview threw an absolute hissy fit when I copied that message string into a posting box.


  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box pyragony54
Language
***
Offline


I Love YaBB!

Posts: 852
Location: Йошкар-Ола
Joined: May 25th, 2014
Gender: Male
Mood: Dead
Zodiac sign: Scorpio
Re: Problems
Reply #17 - Dec 2nd, 2014 at 8:00pm
Mark & QuoteQuote  
It now has left me no peace. Some presenters with me are just too stupid to edit a post properly. I think it is once again a round shock due.
  

if (idea == 'none') {use (manuals) && (Google | | search)}
if ($ answer == 0) {post (question)}
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2235
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Problems
Reply #18 - Dec 2nd, 2014 at 9:01pm
Mark & QuoteQuote  
The gene pool needs more chlorine...  Grin

I think we all have horror stories about users - I have one who couldn't understand why her Android smartphone didn't automatically have her board password and login cookies off her Mac. And one who wanted me to log her into the forum on her computer when she's on the other end of the country (and on a Mac).
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box pyragony54
Language
***
Offline


I Love YaBB!

Posts: 852
Location: Йошкар-Ола
Joined: May 25th, 2014
Gender: Male
Mood: Dead
Zodiac sign: Scorpio
Re: Problems
Reply #19 - Dec 3rd, 2014 at 3:36am
Mark & QuoteQuote  
Oh yes, of such horror stories I can sing a song.
  

if (idea == 'none') {use (manuals) && (Google | | search)}
if ($ answer == 0) {post (question)}
Back to top
 
IP Logged
 
Page Index Toggle Pages: [1] 
ReplyAdd Poll Send Topic
Bookmarks: del.icio.us Digg Facebook Google LinkedIn reddit Twitter Yahoo
Problems

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