I got this error after installing wordpress with composer 
Edited the user.php in \plugin-wordpress\wp\wp-includes\user.php
- Changed the following lines from
Changed the following lines from
function wp_signon( $credentials = array(), $secure_cookie = '' ) { ---- }
function wp_signon( $credentials = array(), $secure_cookie = '' ) { } to:-
- This solved the error and a wordpress login form entry shows up.
This solved the error and a wordpress login form entry shows up.
function wp_signon() { $credentials = array(); $secure_cookie = '' ; -------- }
function wp_signon() { $credentials = array(); $secure_cookie = '' ; }