Sledmur
Web-Developer
- Nov 29, 2011
- 459
- 98
Want to convert from UberCMS to RevCMS? I figured out how to do it ... First off open up your class.core.php file. Then scroll all the way to the bottom till you find this code.
Change that this
Now this is how rev hashes their passwords. Next we will change this to how uber does it, open up your ubercms config file and find this
Copy the hash code and go back to the class.core.php file in revcms. Now go back to the HASH CODE HERE in the edit we did in the core. Now just copy the has code into where it says, save the file and your set!
Give me a like
Code:
final public function hashed($password)
{
return md5($password);
}
Code:
final public function hashed($password)
{
return sha1($password . "HASH CODE HERE");
}
Code:
$config['Site']['hash_secret'] = "HASH CODE HERE";
Give me a like