-2
votes
0answers
15 views

Why do no logins show the admin panel? [closed]

My wordpress install was working fine and I was able to make updates. Today, when I tried to login I never get my admin panel. I treats all my admin account logins like they are subscribers and shows ...
0
votes
0answers
53 views

Ajax call to minimal custom class with WP admin check

I'm creating a plugin that will submit requests via AJAX. As there will potentially be a lot of people submitting requests at once I call the file directly rather than through the WP ajax (reference). ...
0
votes
2answers
114 views

Wordpress administration Over SSL - To Force SSL Logins and SSL Admin Access

I have a plan to enable SSL to admin login of my wordpress site, Is it a best practice? What will be the behavior of plugins? What are the pros and cons of my decision?
1
vote
0answers
63 views

using rewrites to secure login page

I'm trying to be sneaky with iis to secure a wordpress login page (not my choice to run a windows server, but that's the reality of things). It's worked so far, only the login page itself loads itself ...
2
votes
1answer
380 views

How to change the default home page for the WordPress Dashboard?

Is it possible to change the Default "Home" admin page when logging into the WordPress Dashboard? I thought about a couple of possibilities... Substitute the content on the Dashboard home page ...
0
votes
2answers
100 views

How can I open up my administrative panel to everyone?

I'm planning on running a open news site that I want everyone to be able to view the inside of the site without registration. I feel like it should exist a simple check for viewing the WordPress ...
0
votes
2answers
63 views

How to cancel redirection to admin side

My friend asked me to activate a site that someone else did it. The problem is that when I try to run it, and I go to mysite.com I arrive to mysite.com/wp-login.php?redirect_to=/ Where and how can I ...
0
votes
2answers
184 views

Want to know who is login Admin/User

want to know who is login in my wordpress website if admin login then go to dashboard and if user login then go to homepage Approach: I used this code <?php if ( is_user_logged_in() ) { ...
0
votes
2answers
356 views

I keep getting logged out in Firefox

For some reason, tonight when I have gone to work on my Wordpress installation I firstly found myself logged out, even though there was a few cookies left in Firefox relating to the website and when ...
0
votes
1answer
55 views

Remove iPhone detection on login page

I have a wordpress site with a customized login page, the problem is when I go to that page on my iPhone, it detects it as an iPhone and adds the viewport meta tag, which normally would be great but ...
1
vote
1answer
68 views

Client system for media review?

I'm looking for a plugin, or a system, for wordpress, that would allow a client to login and see the graphic designs, video, documents, etc... that i'm currently producing for them, and allow them to ...
0
votes
2answers
337 views

Keep Logged in Users out of Admin Panel

So I'm creating user registration. Just simply <?php wp_register(); ?> but then it gives them a link to the admin panel, which in my situation they really don't need. How do I remove the "Site ...
2
votes
2answers
457 views

Daily notices of failed login attempts for non-existent admin user

I run a multi-user site and for the past week or two I have been getting daily notices that someone is getting locked out due to failed login attempts for user "admin" via the Limit Login Attempts ...
1
vote
4answers
2k views

Cannot access admin panel

I have been working on my site through MAMP and with a localhost. I have not uploaded my site online yet. I have worked in it for weeks accessing through the MAMP start page and then typing ...
1
vote
2answers
757 views

How to determine if an admin is logged in outside the loop

I need to be able to tell if an admin is logged in ouside of the loop. This is needed for some php files that are part of a WP site but do not use require( '../wp-load.php ); What I need to do is ...
1
vote
5answers
6k views

Change WP-Login or WP-Admin

Can I change the name of the wp-login or wp-admin file so that I can go to a different filename in order to login. I am trying to prevent hackers from finding my login and wp-login has become a very ...
1
vote
2answers
284 views

How can I force users to a particular subdomain to log in for MU (Multisite)?

I have a Multi-Site installation of Wordpress, with multiple subdomains, but only one of the subdomains has an SSL certificate. The domains are such: www.example.com blog1.example.com ...
1
vote
1answer
590 views

Using shared SSL for login/admin

I want to use SSL for login/admin. However, since I'm using a shared server, my web host only provides a shared SSL. That means instead of https://www.regular-domain.com I have to go to ...
0
votes
2answers
197 views

Any known plugins for master admin login to edit all on front end?

Have a theme that accepts posts on the front end by users and gives them a front end dashboard too to edit... I was wondering if there are any known plug-ins for the admin to edit all as if they ...
2
votes
5answers
5k views

How to customize wordpress login/register pages?

My question is how do I customize the default WordPress login and register page without editing WP's core files. I'm thinking more along the lines of a functions.php code. Can anyone help me out by ...
0
votes
2answers
752 views

Can't login to my admin area

I don't know what did I change, other than creating a new ftp account because the other one wasn't working with my ftp client. Now when I go to the login page, it doesn't accept my correct wp ...
4
votes
5answers
1k views

How can I make an Ajax login form work with FORCE_SSL_ADMIN enabled?

I'm working on a site that requires an https secured admin area and a secure front-end area as well where private information will be shown. My preference for user login is an Ajax-enabled widget that ...