Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Tutorials
Convert From UberCMS to RevCMS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Sledmur" data-source="post: 60036" data-attributes="member: 9658"><p>Want to convert from UberCMS to RevCMS? I figured out how to do it <img src="/styles/default/xenforo/smilies/emojione/smile.png" class="smilie" loading="lazy" alt=":)" title="Smile :)" data-shortname=":)" />... First off open up your class.core.php file. Then scroll all the way to the bottom till you find this code.</p><p>[CODE]final public function hashed($password)</p><p> {</p><p> return md5($password);</p><p> }[/CODE]</p><p>Change that this</p><p>[CODE]final public function hashed($password)</p><p>{</p><p>return sha1($password . "HASH CODE HERE");</p><p>}[/CODE]</p><p>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 [CODE]$config['Site']['hash_secret'] = "HASH CODE HERE";[/CODE]</p><p>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!</p><p> </p><p> </p><p> </p><p>Give me a like <img src="/styles/default/xenforo/smilies/emojione/wink.png" class="smilie" loading="lazy" alt=";)" title="Wink ;)" data-shortname=";)" /></p></blockquote><p></p>
[QUOTE="Sledmur, post: 60036, member: 9658"] 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. [CODE]final public function hashed($password) { return md5($password); }[/CODE] Change that this [CODE]final public function hashed($password) { return sha1($password . "HASH CODE HERE"); }[/CODE] 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 [CODE]$config['Site']['hash_secret'] = "HASH CODE HERE";[/CODE] 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 ;) [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Tutorials
Convert From UberCMS to RevCMS
Top