SMF 1.1.6 and 2.0 beta 4 Released

Started by Grudge, September 07, 2008, 04:45:46 AM

Previous topic - Next topic

Fustrate

Quote from: Hoochie Coochie Man on September 08, 2008, 02:38:44 AM
I don't understand this:

Security.php
<search for>
// Don't check, just free the stack number.
elseif ($action == 'free' && isset($_REQUEST['seqnum']) && in_array($_REQUEST['seqnum'], $_SESSION['forms']))
</search for>

<replace>
// Don't check, just free the stack number.
elseif ($action == 'free' && isset($_REQUEST['seqnum']) && in_array($_REQUEST['seqnum'], $_SESSION['forms']))
</replace>


Aren't they same?

It's the negative energy in the first one... the replacement has much more positive energy in it's aura.
Steven Hoffman
Former Team Member, 2009-2012

Hoochie Coochie Man

Quote from: YodaOfDarkness on September 08, 2008, 03:17:25 AM
Quote from: Hoochie Coochie Man on September 08, 2008, 02:38:44 AM
I don't understand this:

Security.php
<search for>
// Don't check, just free the stack number.
elseif ($action == 'free' && isset($_REQUEST['seqnum']) && in_array($_REQUEST['seqnum'], $_SESSION['forms']))
</search for>

<replace>
// Don't check, just free the stack number.
elseif ($action == 'free' && isset($_REQUEST['seqnum']) && in_array($_REQUEST['seqnum'], $_SESSION['forms']))
</replace>


Aren't they same?

It's the negative energy in the first one... the replacement has much more positive energy in it's aura.

I don't understand what exactly you mean, but anyway.. if you say so..

PS: first one has many spaces at the end of the line, but second one hasn't. ıs this the change?
İnadına SMF 1.1.X

locau

i keep getting this:
20.  Execute Modification  ./SSI.php  Test failed

Fustrate

Quote from: Hoochie Coochie Man on September 08, 2008, 03:37:20 AM
Quote from: YodaOfDarkness on September 08, 2008, 03:17:25 AM
Quote from: Hoochie Coochie Man on September 08, 2008, 02:38:44 AM
I don't understand this:

Security.php
<search for>
// Don't check, just free the stack number.
elseif ($action == 'free' && isset($_REQUEST['seqnum']) && in_array($_REQUEST['seqnum'], $_SESSION['forms']))
</search for>

<replace>
// Don't check, just free the stack number.
elseif ($action == 'free' && isset($_REQUEST['seqnum']) && in_array($_REQUEST['seqnum'], $_SESSION['forms']))
</replace>


Aren't they same?

It's the negative energy in the first one... the replacement has much more positive energy in it's aura.

I don't understand what exactly you mean, but anyway.. if you say so..

PS: first one has many spaces at the end of the line, but second one hasn't. ıs this the change?
Yep, that's it
Steven Hoffman
Former Team Member, 2009-2012

Nathaniel

Its great to finally see the new release for SMF 2 Beta 4.0. :D

Updating my mods for this version should be interesting... ;)
SMF Friend (Former Support Specialist) | SimplePortal Developer
My SMF Mods | SimplePortal

"Quis custodiet ipsos custodes?" - Who will Guard the Guards?

Please don't send me ANY support related PMs. I will just delete them.

Paracelsus

Flawless update from 1.1.5 to 1.1.6. Thanks.

Noticed that were many files included, is there any txt with a detailed "what's new"?

elwizard


metallica48423

1.1.6 is only a minor bug and security release.  basically, a "maintenance" release

details on the changes done can be found on the changelog, which you can locate conveniently on the downloads page :)
Justin O'Leary
Ex-Project Manager
Ex-Lead Support Specialist

QuoteMicrosoft wants us to "Imagine life without walls"...
I say, "If there are no walls, who needs Windows?"


Useful Links:
Online Manual!
How to Help us Help you
Search
Settings Repair Tool

Hoochie Coochie Man

Quote from: YodaOfDarkness on September 08, 2008, 03:51:21 AM
Quote from: Hoochie Coochie Man on September 08, 2008, 03:37:20 AM
Quote from: YodaOfDarkness on September 08, 2008, 03:17:25 AM
Quote from: Hoochie Coochie Man on September 08, 2008, 02:38:44 AM
I don't understand this:

Security.php
<search for>
// Don't check, just free the stack number.
elseif ($action == 'free' && isset($_REQUEST['seqnum']) && in_array($_REQUEST['seqnum'], $_SESSION['forms']))
</search for>

<replace>
// Don't check, just free the stack number.
elseif ($action == 'free' && isset($_REQUEST['seqnum']) && in_array($_REQUEST['seqnum'], $_SESSION['forms']))
</replace>


Aren't they same?

It's the negative energy in the first one... the replacement has much more positive energy in it's aura.

I don't understand what exactly you mean, but anyway.. if you say so..

PS: first one has many spaces at the end of the line, but second one hasn't. ıs this the change?
Yep, that's it

Thanks for the information..
and thank you very much for update.
İnadına SMF 1.1.X

houseofdreams

#49
Quote from: locau on September 08, 2008, 03:44:10 AM
i keep getting this:
20.     Execute Modification     ./SSI.php     Test failed

I have the same problem. I'm looking in the smf_1-1-5_to_1-1-6_patch.mod but I can't seem to find the changes that are made to the SSI.php file?

Anyone has this change info?

Jaba

Quote from: ApplianceJunk on September 07, 2008, 07:24:45 PM
Very nice, thanks for all the hard work.

I'm not looking for support, but wanted to point this out.

In my Administration Center in the Live from Simple Machines... box it shows this.

SMF 1.1.6 on April 20, 2008, 09:56:14 PM

It seem to have the same time and date as when the last patch came out for SMF 1.1.5

Anyone else see this in there Administration Center or is it just me?


Yeah I see the date also set as SMF 1.1.6 on 20 April , 2008, 21:56:14 PM
just a typo I would guess  ;D
Thanx for the update.

Afro


SaTaNaSDiaBoLo

#52
I've got more than 8000 users on my forum and during the updates the following query:
if (!empty($updates))
    foreach ($updates as $newStatus => $members)
        upgrade_query("
            UPDATE {$db_prefix}members
            SET is_activated = $newStatus
            WHERE ID_MEMBER IN (" . implode(', ', $members) . ")
            LIMIT " . count($members));

was bugging because of the number of members I've solve this problem by adding an array chunk:
if (!empty($updates))
    foreach ($updates as $newStatus => $members)
    {
        $member = array_chunk($members,1000);
        foreach($member as $mem)
        {
            upgrade_query("
            UPDATE {$db_prefix}members
            SET is_activated = $newStatus
            WHERE ID_MEMBER IN (" . implode(', ', $mem) . ")
            LIMIT " . count($members));
        }
}

houseofdreams

For people getting the following error :

20.     Execute Modification     ./SSI.php     Test failed

Look in the source of the SSI.php file, and on line 8, in the comments box, the Software Version string will be something different than

* Software Version:           SMF 1.1.5                                           *

Change this manually to this value, and than try to apply the mod again. Chances are, the error will be gone !  ;D

Bec


hartiberlin

On my SMF 1.1.5 it says in the package manager:

403 Forbidden
You don't have permission to access /index.php?action=pgdownload;auto;package=http://custom.simplemachines.org/mods/downloads/smf_patch_1.0.14-1.1.6.zip;sesc=205182cdb98a1a33234bed4...... on this server.
Apache Server at overunity.com Port 80

Also when I try to download the 7.9 KB patch manually and try to upload it manually in the package manager it says:

Patch corrupted

But now I have set all files via my Hosting file manager to 777 permission and
then I could upload the patch okay and it went through okay ,
so now I have SMF 1.1.6

So watch out your file permissions, before you install it.

Regards, Stefan.

Deprecated

Quote from: LHVWB on September 08, 2008, 03:56:10 AM
Its great to finally see the new release for SMF 2 Beta 4.0. :D

Updating my mods for this version should be interesting... ;)

Now you understand the ancient Chinese curse, "May you lead an interesting life." ;)

Unfortunately, my Chinese friends tell me that it's not an ancient (or modern) curse at all, or at least not a Chinese one.

Deprecated

Quote from: Paracelsus on September 08, 2008, 04:40:13 AM
Flawless update from 1.1.5 to 1.1.6. Thanks.

Noticed that were many files included, is there any txt with a detailed "what's new"?

That would be the Changelog. You probably missed it on the download page because your eyes were magnetized to the beautiful "Beta 4" legend. ;)

http://download.simplemachines.org/index.php?thanks;filename=smf_2-0-beta4p_changelog.txt

Deprecated

Quote from: Hoochie Coochie Man on September 08, 2008, 03:37:20 AM
I don't understand what exactly you mean, but anyway.. if you say so..

PS: first one has many spaces at the end of the line, but second one hasn't. ıs this the change?

Yoda is exhibited his finely honed sense of humor, yet giving you the correct answer. If the only difference is spaces, then that's the reason, that coding guidelines prohibit the use of spaces and require that tabs be used instead. The edit is to conform the code to proper coding guidelines.

chrisb

14.     Execute Modification     ./Sources/Subs.php     Test failed

What do i need to fix these issues

Advertisement: