Welcome, Guest. Please Login or Register.
September 26, 2023, 01:23:45 AM
Home Help Search Login Register
News: If you are still using YaBB SE, please consider upgrading to SMF as soon as possible.

YaBB SE Community  |  YaBB SE Info  |  News From the YaBB SE Team  |  Topic: YaBB SE 1.5.5 Released! « previous next »
Pages: [1] 2 3 ... 7 Reply Ignore Print
Author Topic: YaBB SE 1.5.5 Released!  (Read 339381 times)
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830



WWW
YaBB SE 1.5.5 Released!
« on: January 17, 2004, 03:42:29 PM »
Reply with quote

This version contains a few updated over YaBB SE 1.5.4, including one security vulnerability.  This will probably be the last release from the YaBB SE Team, because we are now working on SMF instead.

For more information on that, see this topic:
http://www.yabbse.org/community/index.php?thread=25385

The update package works only for 1.5.4.  The boardmod-style mod files go from several different versions, down to 1.5.1.  To access the package server, please put this URL in your package manager:
http://www.yabbse.org/packages/bugs

Upgrade can be used for any version down to 1.5.1.

The files in this release can be found here:
http://sourceforge.net/project/showfiles.php?group_id=57105&package_id=52789&release_id=210608

And a changelog can be seen here:
http://sourceforge.net/project/shownotes.php?release_id=210608

For upgrade paths and other information, please see:
http://www.yabbse.org/download.php

Thank you,
Unknown W. Brackets
The YaBB SE Team
Logged
Killer Possum
Sr. Member
****
Posts: 446



WWW
Re:YaBB SE 1.5.5 Released!
« Reply #1 on: January 17, 2004, 04:41:37 PM »
Reply with quote

coolness....
Logged
Black Hawk
Jr. Member
**
Posts: 83


YaBB SE RULEZ!!


WWW
Re:YaBB SE 1.5.5 Released!
« Reply #2 on: January 17, 2004, 04:46:50 PM »
Reply with quote

Wow, I need to update my forum!!
Logged

Always fear the hawk...
carhartt
Noobie
*
Posts: 22


I'm a lamer!


Re:YaBB SE 1.5.5 Released!
« Reply #3 on: January 17, 2004, 04:57:03 PM »
Reply with quote

it works...  ;D
Logged
Dr_Michael
Sr. Member
****
Posts: 317


Hellenic web


WWW
Re:YaBB SE 1.5.5 Released!
« Reply #4 on: January 17, 2004, 05:11:49 PM »
Reply with quote

Where can I find the chnages from 1.5.4 to 1.5.5?
Logged

B
Noobie
*
Posts: 26


Silence is golden.


WWW
Re:YaBB SE 1.5.5 Released!
« Reply #5 on: January 17, 2004, 05:19:43 PM »
Reply with quote

There's a mistake in the 1.5.4 -> 1.5.5 Boardmod file. Step #11 should edit Load.php, not RemoveThread.php. :)

B
Logged
David
Destroyer Dave
Global Moderator
YaBB God
*****
Posts: 5761


I'm not a llama!


WWW
Re:YaBB SE 1.5.5 Released!
« Reply #6 on: January 17, 2004, 05:22:18 PM »
Reply with quote

Where can I find the chnages from 1.5.4 to 1.5.5?
Best bet would be to manually apply the changes from the Boardmod file once Unknown updates it.
Logged

pboehi
Noobie
*
Posts: 11


I'm a llama!


Re:YaBB SE 1.5.5 Released!
« Reply #7 on: January 17, 2004, 05:34:38 PM »
Reply with quote

I tried to run the update mod but before doing so I tested it and got two error messages (string not found). These two strings were not found:

********

$loadphpver = 'YaBB SE 1.5.1';

/* this function is called from index.php - it loads the cookies for the board
                and places the critical variables into the right place
                $username - the username of the logged in person, or 'Guest'
                $password - the doubly encrypted password stored in the cookie*/
function LoadCookie()
{
        global $password, $username, $cookiename;

        if (isset($_COOKIE[$cookiename]))
        {
                list($username, $password) = @unserialize(stripslashes($_COOKIE[$cookiename]));
                $username = ($username != '') ? $username : 'Guest';
        }

**** and ****

unction sendmail($to, $subject, $message, $from = null)
{
        global $mailtype, $webmaster_email, $modSettings;

        $chunkSize = 50;

        $to_array = (is_array($to) ? $to : array($to));

        if ($from == null)
                $from = $webmaster_email;
        $subject = stripslashes($subject);
        $subject = str_replace(array('"', ''', '&', '<', '>'), array('"', '\'', '&', '<', '>'), $subject);
        $message = stripslashes($message);
        $headers = "MIME-Version: 1.0\r\n";
        $headers .= "From: <$webmaster_email>\r\n";
        $headers .= "Return-Path: $webmaster_email";

        if ($modSettings['mail_type'] == 'sendmail')
                foreach ($to_array as $to)
                        $mail_result = mail($to, $subject, $message, $headers);
        else
                smtp_mail($to_array, $subject, $message, $headers);

        return $mail_result;
}

function smtp_mail($mail_to_array, $subject, $message, $headers)
{
        global $modSettings, $webmaster_email;

        if (!$socket = fsockopen($modSettings['smtp_host'], 25, $errno, $errstr, 20))
                fatal_error("Could not connect to smtp host : $errno : $errstr");

        server_parse($socket, '220');

        if ($modSettings['smtp_username'] != '' && $modSettings['smtp_password'] != '')
        {
                fputs($socket, "EHLO $modSettings[smtp_host]\r\n");
                server_parse($socket, '250');
                fputs($socket, "AUTH LOGIN\r\n");
                server_parse($socket, '334');
                fputs($socket, base64_encode($modSettings['smtp_username']) . "\r\n");
                server_parse($socket, '334');
                fputs($socket, base64_encode($modSettings['smtp_password']) . "\r\n");
                server_parse($socket, '235');
        }
        else
        {
                fputs($socket, 'HELO ' . $modSettings['smtp_host'] . "\r\n");
                server_parse($socket, '250');
        }
        foreach($mail_to_array as $mail_to)
        {
                fputs($socket, "MAIL FROM: <$webmaster_email>\r\n");
                server_parse($socket, '250');
                $to_header = "To: <$mail_to>";
                fputs($socket, "RCPT TO: <$mail_to>\r\n");
                server_parse($socket, '250');
                fputs($socket, "DATA\r\n");
                server_parse($socket, '354');
                fputs($socket, "Subject: $subject\r\n");
                if (strlen($mail_to))
                        fputs($socket, "$to_header\r\n");
                fputs($socket, "$headers\r\n\r\n");
                fputs($socket, "$message\r\n");
                fputs($socket, ".\r\n");
                server_parse($socket, '250');
                fputs($socket, "RSET\r\n");
                server_parse($socket, '250');
        }
        fputs($socket, "QUIT\r\n");
        fclose($socket);
}


function server_parse($socket, $response)
{
        while (substr($server_response, 3, 1) != ' ')
                if (!($server_response = fgets($socket, 256)))
                        fatal_error('Couldn\'t get mail server response codes');

        if (!(substr($server_response, 0, 3) == $response))
                fatal_error("Ran into problems sending Mail. Error: $server_response");
}

*****

What am I supposed to do?

Peter
Logged
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830



WWW
Re:YaBB SE 1.5.5 Released!
« Reply #8 on: January 17, 2004, 05:41:32 PM »
Reply with quote

I fixed the problem with Load.php, I'll double check the other problem.

-[Unknown]
Logged
burglar
Noobie
*
Posts: 8


PHP must Rule The World!


WWW
Re:YaBB SE 1.5.5 Released!
« Reply #9 on: January 17, 2004, 05:43:42 PM »
Reply with quote

i get een error when i will change the language to dutch....

this one

An Error Has Occurred!

Failure in submission of form. Session timeout
Logged

Who can help me!!
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830



WWW
Re:YaBB SE 1.5.5 Released!
« Reply #10 on: January 17, 2004, 05:50:20 PM »
Reply with quote

This has nothing to do with the 1.5.5 update.

-[Unknown]
Logged
bostasp
Jr. Member
**
Posts: 62



WWW
Re:YaBB SE 1.5.5 Released!
« Reply #11 on: January 17, 2004, 06:01:02 PM »
Reply with quote

lol, well, at least I wasn't expecting this one  :D
Logged

robo47
Noobie
*
Posts: 20


/me is the only robo out there


WWW
Re:YaBB SE 1.5.5 Released!
« Reply #12 on: January 17, 2004, 06:19:11 PM »
Reply with quote

are there any important changes? because dont want to make the edit's i made to my yabb all again just because of some things i dont need
Logged

blub
Fizzy
Full Member
***
Posts: 214



Re:YaBB SE 1.5.5 Released!
« Reply #13 on: January 17, 2004, 06:20:27 PM »
Reply with quote

Boardmod loaded up fine except for the change over to ARIN, but that was only because I'm using RIPE instead.

Thanks for the update.  ;)
Logged
David
Destroyer Dave
Global Moderator
YaBB God
*****
Posts: 5761


I'm not a llama!


WWW
Re:YaBB SE 1.5.5 Released!
« Reply #14 on: January 17, 2004, 06:26:07 PM »
Reply with quote

are there any important changes? because dont want to make the edit's i made to my yabb all again just because of some things i dont need
Due to the security patch, yes I would consider this a required patch.  I would try the package manager version first.
Logged

Pages: [1] 2 3 ... 7 Reply Ignore Print 
YaBB SE Community  |  YaBB SE Info  |  News From the YaBB SE Team  |  Topic: YaBB SE 1.5.5 Released! « previous next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.0.19 | SMF © 2021, Simple Machines
Valid XHTML 1.0! Valid CSS!
Page created in 0.075 seconds with 36 queries.