P Panamaflow507 New Member Apr 7, 2012 21 0 May 19, 2014 #1 I want to move from uber 2.0 by jonty to Revcms. Ive tried to change the hashig, but it didnt work. I CANT LOG IN. Any Help?
I want to move from uber 2.0 by jonty to Revcms. Ive tried to change the hashig, but it didnt work. I CANT LOG IN. Any Help?
Jerry not rly active lol Jul 8, 2013 1,957 522 May 19, 2014 #2 UberCMS 2.0 have a Custom Hashing called "UberHash" so there is no way you could make it into that buddy. Upvote 0 Downvote
UberCMS 2.0 have a Custom Hashing called "UberHash" so there is no way you could make it into that buddy.
P Panamaflow507 New Member Apr 7, 2012 21 0 May 19, 2014 Thread starter #3 Cant you copy it ? and Jonty said the function userhash. I used this: witch is just final public function hashed($password) { return sha1((md5$password)); } but it didnt work Upvote 0 Downvote
Cant you copy it ? and Jonty said the function userhash. I used this: witch is just final public function hashed($password) { return sha1((md5$password)); } but it didnt work
Jerry not rly active lol Jul 8, 2013 1,957 522 May 19, 2014 #4 Try one of these below. PHP: final public function hashed($password) { return md5($password); } PHP: final public function hashed($password) { return sha1($password); } Upvote 0 Downvote
Try one of these below. PHP: final public function hashed($password) { return md5($password); } PHP: final public function hashed($password) { return sha1($password); }
P Panamaflow507 New Member Apr 7, 2012 21 0 May 19, 2014 Thread starter #5 Tried Them already. And Still it didnt work. Upvote 0 Downvote
NSA sudo apt-get thefuckout.tar.gz Dec 9, 2011 715 86 May 19, 2014 #6 I'd presume you'd need to change RevCMS' hashing function to the one used in Uber. Upvote 0 Downvote
P Panamaflow507 New Member Apr 7, 2012 21 0 May 19, 2014 Thread starter #7 I;ve have but didnt work. Upvote 0 Downvote
NSA sudo apt-get thefuckout.tar.gz Dec 9, 2011 715 86 May 19, 2014 #8 You changed it in class.core.php? Upvote 0 Downvote
P Panamaflow507 New Member Apr 7, 2012 21 0 May 19, 2014 Thread starter #9 yes i did.. It didnt work. Upvote 0 Downvote
NSA sudo apt-get thefuckout.tar.gz Dec 9, 2011 715 86 May 19, 2014 #10 You're missing a ( before $password. should be md5($password) not md5$password) Last edited: May 19, 2014 Upvote 0 Downvote