WebsiteBaker Community Forum

General Community => Global WebsiteBaker 2.8.x discussion => Topic started by: crnogorac081 on July 22, 2010, 07:36:19 PM

Title: eregi function
Post by: crnogorac081 on July 22, 2010, 07:36:19 PM
Hi,

I downloaded latest 1442 svn from project page. When I installed it says revision 1287???

However the reason to post here is that I found eregi function in admin/settings/save.php on line 42, and it is deprecated..

Could someone please replace that on project page..

cheers
Title: Re: eregi function
Post by: Luisehahne on July 22, 2010, 09:51:42 PM
You have an old Version, it's not Revision 1442

Dietmar
Title: Re: eregi function
Post by: crnogorac081 on July 22, 2010, 10:25:48 PM
Yes you are right, I download from wrong project link..

sorry for my mistake..

Ivan
Title: Re: eregi function
Post by: crnogorac081 on July 22, 2010, 10:33:11 PM
I dont want to open a new topic, I am curious what does statusflag = 6 by default means in users table ?
Title: Re: eregi function
Post by: DarkViper on July 22, 2010, 10:55:58 PM
there is a description in file CANGES_IN 2.8.2
'statusflags' is a replacement for the deprecated field 'active'

now up to 32 different Flags can be stored in a single Integer-field (lot of place for future extensions.. ;) )
the 'old' active-flag can be found now in BIT_1 of 'statusflags'
other already defined flags can be explored in /framework/sys.constants.php

Code: ( how to use) [Select]
<?php

if( $rec_user[&#39;statusflags&#39;] & USERS_ACTIVE )
{
    echo &
#39;the user is activated&#39;;
}else
{
    echo &
#39;the user is NOT activated&#39;;
}
?>
Title: Re: eregi function
Post by: crnogorac081 on July 22, 2010, 11:11:38 PM
great, thanks for info mate!
Title: Re: eregi function
Post by: crnogorac081 on July 24, 2010, 08:01:39 PM
I noticed in latest (1443) svn that you can signup (open new account) when you are loged in.

Dont you thing that access to signup page shuld be forbiden for loged users.

Possible solution is to add few lines at the top of signup.php like if session[username] != "" {header redirect to index.php}

cheers