Local webserver, Xampp, error from line 300 in class-wp-hook.php
-
I just installed a local webserver on my PC (using Xampp) and am getting an error message:
Warning: Parameter 1 to FeedWordPressHTTPAuthenticator::set_auth_options() expected to be a reference, value given in C:\Users\Name\Desktop\localhost\htdocs\SiteName\wp-includes\class-wp-hook.php on line 300
The lines around 300 in class-wp-hook.php read:
// Avoid the array_slice if possible. if ( $the_['accepted_args'] == 0 ) { $value = call_user_func_array( $the_['function'], array() ); } elseif ( $the_['accepted_args'] >= $num_args ) { $value = call_user_func_array( $the_['function'], $args ); } else { $value = call_user_func_array( $the_['function'], array_slice( $args, 0, (int)$the_['accepted_args'] ) ); } } } while ( false !== next( $this->iterations[ $nesting_level ] ) );
I am completely lost. Any ideas?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Local webserver, Xampp, error from line 300 in class-wp-hook.php’ is closed to new replies.