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 3 post(s). Click here to show all
Posted by: pyragony54
Posted on: Oct 24th, 2017 at 7:41am
works  Smiley
Posted by: Dandello
Posted on: Oct 24th, 2017 at 6:34am
Not tested: in AdminEdit.pm find
Code (Perl)
Select All
    our ($AGREE);
     fopen( 'AGREE', '<', "$langdir/$agreementlanguage/agreement.txt" )
       or croak "$croak{'open'} AGREE"; 


replace with
Code (Perl)
Select All
    my $get_agree = "$langdir/$agreementlanguage/agreement.txt";
     if ( !-e $get_agree ) {
         $get_agree = "$langdir/English/agreement.txt";
     }
     our ($AGREE);
     fopen( 'AGREE', '<', "$get_agree" )
           or croak "$croak{'open'} AGREE"; 



This will open the English for editing, but YaBB should save it to the chosen language folder.
Posted by: pyragony54
Posted on: Oct 24th, 2017 at 5:43am
Quote:
Nicht abgefangene Fehler :
Kann nicht öffnen AGREE at /var/www/vhosts/yabbtest.de/cgi-bin/yabb2/Admin/AdminEdit.pm line 357.