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: Dec 29th, 2022 at 2:32pm
Okay - Is the yabbfiles folder outside of the cgi-bin? (It belongs outside the cgi-bin) and do you have the correct path to it? The path should be something on the order of:
Code
Select All
$htmldir = '/home/XXXXXX/public_html/yabbfiles'; 

Depending how the server is set up, and
Code
Select All
$yyhtml_root = 'http://XXXXXXXXX.com/yabbfiles'; 



The code in Paths.pm should automatically detect if you're using https
Posted by: Vitaly Smirnov
Posted on: Dec 25th, 2022 at 10:50am
Tried to install new forum version 2.7
The path to  folder yabbfiles is set correctly, but the forum is in black and white, and doesn't want to pick up the file default.css
Posted by: Pieszyce
Posted on: Sep 6th, 2022 at 8:47am



Is there any progress with 2.7?

Is it now bug free? It's so quiet here and I'd like to know if the 2.7 version that's out now is bug-free.

greetings  Smiley
Pieszyce
Posted by: Dandello
Posted on: Jun 29th, 2022 at 5:45pm
When I tried to test email settings, nothing saved so I can't test any email settings.

My suspicion is that the not-saving settings is a big part of the problem - and I'm  sure there's an issue with ExtendedProfiles in your Settings.pm
Posted by: pyragony54
Posted on: Jun 29th, 2022 at 4:05pm
Sorry Dandelo, I have to disagree with you. It works via UNIX, Linux, BSD and via the YaBB engine. Only with PERL it doesn't work. I updated the PERL modules today, which didn't help either. Fact: Everything is entered correctly.
Go to the test page and try it yourself.
https://yabbtest.de/cgi-bin/yabb2/YaBB.pl

You know your login data and you also have admin rights.
This will be better than if I write.
Posted by: Dandello
Posted on: Jun 29th, 2022 at 3:36pm
Okay - that mailer error is telling you that your SMTP credentials could not be verified - either the password isn't right or the user name isn't right (or possibly the port number isn't right.)

For the ExtendedProfiles error we need to look at Variables/Settings.pm to see if the problem is there.
Posted by: pyragony54
Posted on: Jun 29th, 2022 at 1:28pm
Registration gone through, known error appears.

Quote:
Nicht abgefangene Fehler :
SMTPS-Anmeldeinformationen konnten nicht authentifiziert werden. Gebe bitte die folgenden Informationen an: Admin-Center -> Forum-Konfiguration -> Erweiterte Einstellungen -> Registerkarte eMail. Gebe Deinen SMTP-Berechtigungsbenutzernamen, Dein SMTP-Berechtigungskennwort und Deinen SMTP-Server ein. at /home/users/yabbtest/www/cgi-bin/yabb2/Sources/Mailer.pm line 126.


Registration is shown as pre-registered, activation mail was not sent.
Activated manually.

Quote:
Ein Fehler ist aufgetreten! Use of uninitialized value $id in array element at /home/users/yabbtest/www/cgi-bin/yabb2/Admin/Settings_ExtendedProfiles.pm line 75.


Activation not successful

Quote:
Ein Fehler ist aufgetreten! Use of uninitialized value $regmember in string ne at /home/users/yabbtest/www/cgi-bin/yabb2/Admin/RegistrationLog.pm line 697.


Posted by: Dandello
Posted on: Jun 29th, 2022 at 12:26pm
Code
Select All
             if ( $reguser && $x[2] && $reguser eq $x[2] ) { fatal_error('already_preregged'); }
             if ( $member{'email'} && $x[4] && lc $member{'email'} eq lc $x[4] ) { 



more checks.
Posted by: pyragony54
Posted on: Jun 29th, 2022 at 5:59am
Dandello wrote on Jun 28th, 2022 at 9:58pm:
This will double check that the variables being checked have true values.


Unfortunately didn't work. Same error message


Posted by: Dandello
Posted on: Jun 28th, 2022 at 9:58pm
Can't reproduce the issue so: in Register.pm find
Code
Select All
        for (@reglist) {
             @x = split /[|]/xsm;
             if ( $reguser eq $x[2] ) { fatal_error('already_preregged'); }
             if ( lc $member{'email'} eq lc $x[4] ) {
                 fatal_error('email_already_preregged');
             }
         } 



and make it
Code
Select All
         for (@reglist) {
             @x = split /[|]/xsm;
             if ( $reguser && $reguser eq $x[2] ) { fatal_error('already_preregged'); }
             if ( $member{'email'} && lc $member{'email'} eq lc $x[4] ) {
                 fatal_error('email_already_preregged');
             }
         } 



This will double check that the variables being checked have true values.
Posted by: pyragony54
Posted on: Jun 28th, 2022 at 7:38pm
I don't think we understand each other properly. The error only occurs when I try to send the test mail to myself. The test mail is not sent either.

But a new mistake.

Quote:
Ein Fehler ist aufgetreten! Use of uninitialized value in string eq at /home/users/yabbtest/www/cgi-bin/yabb2/Sources/Register.pm line 1038.
Posted by: Dandello
Posted on: Jun 28th, 2022 at 6:38pm
Net::SMTP now needs the correct port number (so try 127.0.0.1:25 which should match what the 2.6 code used. Here it's ':587')
Posted by: pyragony54
Posted on: Jun 28th, 2022 at 5:24pm
Dandello wrote on Jun 28th, 2022 at 11:48am:
And I just got NET::SMTPS to work - will upload later - but it looks like it's a redundant option since NET::SMTP does exactly the same same thing.


It doesn't work for me in the test forum. But it works with Anti-Scam. The same error message. I updated the PERL module. No effect. For security reasons I want to use the PERL module. When I was using the YaBB engine, I kept getting on the XBL blacklist and couldn't send mail. It stopped with the PERL module. If Net::SMTPS doesn't work, then get rid of it altogether.

Pieszyce has an error in his Dutch translation that causes an error in the Date::Time. But he has to look for it himself. I don't have time for that. I want to get as many translations as possible. I will also send my two Russian children on the march. When YaBB 2.7 is finished, it will probably be the last. I'm getting too old for that too. Nonetheless, thank you for your work on behalf of everyone. If you want to go to the test forum, do it so you can see the bugs if you don't see them. If you need something, say it.

Posted by: Dandello
Posted on: Jun 28th, 2022 at 12:16pm
And Mailer.pm
Posted by: Dandello
Posted on: Jun 28th, 2022 at 11:48am
Mailer & Smtp.pm edits - As I posted earlier, the Net::SMTPS doesn't work here - I think it's due to a problem with the required Perl Module. The YaBB SMTP Engine no long throws errors when used BUT it doesn't send email either (at least here).

(And I just got NET::SMTPS to work - will upload later - but it looks like it's a redundant option since NET::SMTP does exactly the same same thing.