Page Index Toggle Pages: 1 ReplyAdd Poll Send Topic
Normal Topic Bug Road on 2.7.1929... (Read 3598 times)
 
Paste Member Name in Quick Reply Box Rucola
Senior Member
Bug Finder
****
Offline



Posts: 286
Location: Country Children Song
Joined: Aug 9th, 2017
Gender: Male
Mood: Adventurous
Zodiac sign: Taurus
Bug Road on 2.7.1929...
Dec 11th, 2017 at 4:32am
Mark & QuoteQuote  
system error with saving: -in the forum settings, there was a save error, even if you burst even though you are cracking, and save about saving-for a long time it hangs and does not save (I use to save after saving and quickly click on the main-it turns out I wanted, but in the settings forum all remains as it is not done (in particular, tried to make users
  
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2234
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Bug Road on 2.7.1929...
Reply #1 - Dec 11th, 2017 at 1:30pm
Mark & QuoteQuote  
Creating users does not make any changes in Settings. Exactly what error is showing up in the error log, if any? Exactly what setting are you trying the change in Forum Settings or Advanced Settings that isn't saving?

  

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



Posts: 286
Location: Country Children Song
Joined: Aug 9th, 2017
Gender: Male
Mood: Adventurous
Zodiac sign: Taurus
Re: Bug Road on 2.7.1929...
Reply #2 - Dec 11th, 2017 at 4:08pm
Mark & QuoteQuote  
I do not create any users-I'm trying to change the timezone for example in the forum settings or give guests a list of users-when trying to save the forum settings-hangs and spins for a long time in the update page when the application is restarted, but the forum settings again are temporary zone uci by default and the list of users can only view participants-do not listen to the forum settings when saving-go by yourself and try to have the right to have it-if you save the hang of the hangout s main page
  
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2234
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Bug Road on 2.7.1929...
Reply #3 - Dec 11th, 2017 at 4:47pm
Mark & QuoteQuote  
I suspect there's a mismatch between the YaBB Country List and the Perl Country list. (I got it to change to Moscow.)  What were you trying to change it to?

Also, there's no provision for guests to access the MemberList or member profiles. The only choices for the Admin are: links to the member profile disabled completely OR links go to a 'please register or login' notice.
  

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



Posts: 286
Location: Country Children Song
Joined: Aug 9th, 2017
Gender: Male
Mood: Adventurous
Zodiac sign: Taurus
Re: Bug Road on 2.7.1929...
Reply #4 - Dec 11th, 2017 at 7:25pm
Mark & QuoteQuote  
what do you write about, I'm talking about problems with saving in the settings of the forum I say (there is a move which can view the list of users and not have access to it ...
  
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2234
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Bug Road on 2.7.1929...
Reply #5 - Dec 11th, 2017 at 7:43pm
Mark & QuoteQuote  
Guests cannot view the list of members. Period. Not happening.

I can reproduce the not saving Timezones and am looking into it.
  

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



Posts: 286
Location: Country Children Song
Joined: Aug 9th, 2017
Gender: Male
Mood: Adventurous
Zodiac sign: Taurus
Re: Bug Road on 2.7.1929...
Reply #6 - Dec 11th, 2017 at 8:13pm
Mark & QuoteQuote  
there is a critical problem with maintaining the settings of the forum, and can generally save all the settings in the admin panel-it's not just kazyva and the red code of the entire version of 1929
  
Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2234
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: Bug Road on 2.7.1929...
Reply #7 - Dec 11th, 2017 at 9:35pm
Mark & QuoteQuote  
What part of working on it are you not getting? or is there another problem you're not saying?

To solve the Timezone issue: In Admin/Settings_Main.pm find
Code (Perl)
Select All
    load_language('Countries');
     my @mycntry =
       sort { $countrytime_txt{$a} cmp $countrytime_txt{$b} }
       keys %countrytime_txt;

     foreach my $i (@mycntry) {
         $tz_select .=
 qq~<option value="$i" ${isselected($i eq $mytz)}>$countrytime_txt{$i}</option>~;
     } 



replace with
Code (Perl)
Select All
    my @mycntry = DateTime::TimeZone->all_names();
     foreach my $i (@mycntry) {
         my $counttime = $i;
         $counttime =~ s/_/ /gxsm;
             $tz_select .=
 qq~<option value="$i"${isselected($i eq $mytz)}>$counttime</option>\n~;
     } 



In Sources/Profiles.pm find
Code (Perl)
Select All
            load_language('Countries');
             my $mytz = ${ $uid . $user }{'user_tz'} || $default_tz;
             my @mycntry =
               sort { $countrytime_txt{$a} cmp $countrytime_txt{$b} }
               keys %countrytime_txt;
             $user_tz_select = q~<br /><select name="user_tz" id="user_tz">~;
             $user_tz_select .=
               qq~<option value="UTC"${isselected($mytz eq 'UTC')}>UTC</option>~;

             foreach my $i (@mycntry) {
                 $user_tz_select .=
 qq~<option value="$i"${isselected($mytz eq $i)}>$countrytime_txt{$i}</option>~;
             } 



replace with
Code (Perl)
Select All
            my $mytz = ${ $uid . $user }{'user_tz'} || $default_tz;
             my @mycntry = DateTime::TimeZone->all_names();
             $user_tz_select = q~<br /><select name="user_tz" id="user_tz">~;
             foreach my $i (@mycntry) {
                 my $counttime = $i;
                 $counttime =~ s/_/ /gxsm;
                 $user_tz_select .=
 qq~<option value="$i"${isselected($mytz eq $i)}>$counttime</option>~;
             } 



This completely negates the need for the Countries.lng file. The available time zones are in English only and are fully dependent on the Perl DateTime::TimeZones module.
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1
ReplyAdd Poll Send Topic
Bookmarks: del.icio.us Digg Facebook Google LinkedIn reddit Twitter Yahoo
Bug Road on 2.7.1929...

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