View Single Post
  #3  
Old 04-02-2016, 11:36 AM
pachoofoosh's Avatar
pachoofoosh pachoofoosh is offline
Artist
 
Join Date: Dec 2012
Location: New York
Posts: 98
Gender: Unknown/Other
Credits: 16,110
pachoofoosh is on a distinguished road
Default

Just looked through that script... it seems to update the password hash in the database but not the salt. Try changing line 39, which looks like:
PHP Code:
$mysidia->db->update("users", array("password" => $password), "uid='{$mysidia->input->get("uid")}'"); 
To this:
PHP Code:
$mysidia->db->update("users", array("password" => $password"salt" => $newsalt), "uid='{$mysidia->input->get("uid")}'"); 
edit: omg didn't realize op posted this a few months ago ok whoops

@NobodysHero I'm not sure about the email thing, though. ;o; Last time I ran Mysidia the password resets were working fine... Does your host have the mail() function enabled? Some hosting providers disable that function.
__________________
The calzones... betrayed me?

Last edited by pachoofoosh; 04-02-2016 at 11:44 AM.
Reply With Quote