[ASAP] Convert - Illumina 2.0.2 Zap to RevCMS [ Help ]

Results 1 to 2 of 2
  1. #1
    Member Youngster is offline
    MemberRank
    Oct 2015 Join Date
    56Posts

    [ASAP] Convert - Illumina 2.0.2 Zap to RevCMS [ Help ]

    Hey Ragezone members, thanks in advance any help is well appreciated.

    So I'm using IlluminaCMS, Zap 2.0.2 released by @Jonteh. That I know of it has a different way of hashing users login, password etc... so I wanna switch to RevCMS now right? Hotel has about 33+ daily online. I wanna update the cms and stuff, but I don't wanna do it with Illumina like ugh it's a nice base but I want something more simple like RevCMS.

    P.S
    How do I convert Illumina Users Hashing, to RevCMS, so users don't have to make a new account. Like I tried changing MD5 to SHA1 but it didn't work so I figure it has to have a different hashing.


    Illumina User Hashing Code.

    Code:
    public function userHash($password, $username) 
    {
    return sha1(md5($password) . strtolower($username));
            }
    RevCMS User Hashing Code.

    Code:
    final public function hashed($password)    {
            return md5($password);
    
        }
    Thanks in Advance.


  2. #2
    Valued Member BronzeSpider547 is offline
    MemberRank
    Dec 2015 Join Date
    139Posts

    Re: [ASAP] Convert - Illumina 2.0.2 Zap to RevCMS [ Help ]

    In the first CMS Snippet, There's both SHA1 and MD5 encryption, in the second there's only md5
    So this is for the first one:
    PHP Code:
    return md5($password) . strtolower($username); 



Advertisement