Try http://www.npoty.no/wordpress/wp-login.php
Then I would read and follow the advice here:
http://codex.wordpress.org/FAQ_My_site_was_hacked
I’m not sure what the file upload part on your page is about but I’d be highly suspicious of it.
Two plugins that I install on every site I create these days are Rename wp-login.php (currently unmaintained but still working. I hope someone picks this one up.) and Login Security Solution.
Hi!
Thank you for your tip, and your help!
I´ll be sure to change the login-link from now on.
I managed to go to the login-page with your link, but was not able to enter my password, or change it. Someone/something was blocking it the possibility of asking for a new password and entering the existing password.
I had to change the function.php file through ftp -> the bloackage dissapeared and I could ask for a new password and enter it.
File: functions.php
I entered:
<?php
function thisismyurl_create_admin_user() {
if ( is_admin() ) {
$username = FALSE; // set to your desired username (eg ‘username’ )
$password = FALSE; // set to your desired password (eg ‘password’ )
$email_address = FALSE; // set to your desired email address (eg ‘info@thisismyurl.com’ )
if ( ! empty( $username ) && ! empty( $password ) && ! empty( $email_address ) ) {
if ( ! username_exists( $username ) && ! email_exists( $email_address ) ) {
$user_details= array( ‘user_pass’ => $password, ‘user_login’ => $username, ‘user_email’ => $email_address, ‘role’ => ‘Administrator’ );
$user_id = wp_create_user( $user_details );
if ( isset( $user_id ) )
$notification = __( ‘Username was successfully created.’ );
else
$notification = __( ‘No user was created due to an error during creation.’ );
} else {
$notification = __( ‘Username or email already exists.’ );
} /* end if */
} else {
$notification = __( ‘Variables not properly set, no user was created.’ );
} /* end if */
} else {
} /* end if */
if ( isset( $notification ) )
echo sprintf( ‘<div class=”updated”><p>%1s</p></div>’, $notification );
} /* thisismyurl_create_admin_user() */
add_action( ‘admin_notices’, ‘thisismyurl_create_admin_user’ );
Well, the blockage is back. And I´m again not able to login.
Seems strange. Any suggestions on how to change my login/password and go around what is happening here: http://www.npoty.no/wordpress/wp-login.php ?
If you have access to the database, check the user record for your login and make sure it has your correct email address. Then go ahead and reset your password from the login page.
Did you follow all the steps in the article I linked, especially about changing the site passwords? It’s also possible they have installed a backdoor somewhere so you really need to scan the site for any files that shouldn’t be there, and check WordPress for any users that shouldn’t be there.