tommm / password-hash

A plugin for MyBB 1.8 that modifies cryptographic methods.
5 stars 2 forks source link

Advanced Password Hash could not be activated because core files could not be modified. Please check the documentation CHMOD permissions and try again. #2

Open xSynthx opened 7 years ago

xSynthx commented 7 years ago

I tried installing this plugin, and I got this error :/ And these are my chmod settings, they are all correct https://gyazo.com/7267d9dc3467fa9af0eb215c354f3d82

JordanMussi commented 7 years ago

inc/functions_user.php must be writable for the core edits to be successful.

You can perform them manually as well: Find the line starting with:

function validate_password_from_uid

Replace the whole line with:

require_once MYBB_ROOT.'inc/plugins/psswrdhsh/functions_user.php';
function old_validate_password_from_uid($uid, $password, $user = array())