After updating to version 2.7.4, the password no longer works, the page simply reloads. I attempted changing the password but that had no effect. Cleared all caching, no change.
]]>Hi,
i was wondering if i can add a waitlist form below the password field so that user that dont have the password can signup for it?
(please refer to the image below for further clarification)
Site password enabled but on frontpage when enter password it just refreshes does not go to homepage or anywhere.
Thanks.
]]>Hello,
I am wondering if you can set different passwords to access different multisites (setup as sub domains)
Ie. site1.domain.com has password 123456
site2.domain.com has password abcdef
Thanks!
]]>One issue with this plugin especially with new domains. It blocks indexing and google seems to ignore the page for weeks or months before it recrawls again. Is it possible to have the option to decide whether no-index is added.
]]>I’ve used the plugin on many sites hosted at Siteground while in development. But today on a new site, I entered the password, closed my private browser window, then went back in a new private window and I wasn’t required to enter a password. If I purge the cache it works again. Not necessarily a problem with the plugin, but appears to be incompatible with Siteground.
]]>I’m using the free PPWP plugin and protecting the enter site, however as the admin I want to whitelist myself so that I don’t need to use the password to load my website, however that option is greyed out in settings. How can I set it so that as the admin I won’t need to use the password to load my site?
]]>I’m using PPWP plugin with a landing page on my site using the “Landing Pages By PluginOps” plugin. After installing the PPWP plugin, I noticed there’s a strange character that’s showing up on my landing page (link is below) in the bottom left hand corner. Is there some incompatibility issues between the PPWP plugin and page builders?
]]>Hi!
For some reason css doesn’t work on password protected page. I tried with chrome console and everything is okay but as soon as I add it to my custom css – nothing happens.
Hope you can help me with this one!
]]>I have several pages that are password protected. I want to change the standard “This content is password protected. To view it please enter your password below:” wording just on the one page. I don’t want it to be a global change that affects all password protected pages. Can this be done?
]]>Hi, great plugin, and I installed the customiser as well. I have a problem with the layout of things. For some reason my password field appears at the top of the page instead of being entered vertically.
I then went and inspected the code and with some modifications I have found that this code would centre the form vertically:
#login {
position: absolute!important;
top: 50%!important;
left: 50%!important;
transform: translate(-50%,-50%)!important;
}
unfortunately if I add this code in the CSS customisation under appearance, or even if I add it to the theme settings in Elementor, nothing happens on the front-end, and the form still appears at the top of the page.
Where can I insert the custom CSS to modify the standard behavior of the form?
thanks
]]>Is the ‘use transients’ checkbox coming back? It seemed to be removed on 2.7.x and was necessary when working with cloudways sites with basic caching. It doesn’t even seem to be under pro now, it’s just removed. Thanks
]]>Hi. My client has the website https://industrylink.eu and has installed the plugin Password Protected, which is disabled at this moment.
On the email address [email protected] my client received some statistics from [email protected]. That email address does not exist in the domain cpanel and I want to know if the plugin is sending emails like this regularly and how that email address can be used if it’s not created in cpanel.
Thank you,
Razvan Rusu
]]>Hello ! thanks for your plugin, it’s easy to use and very usefull. But with debug mode on I’ve this message : https://prnt.sc/ekFbqdsXgm6a
Can you see this please ?
Thanks !!!
]]>I′d prefer and recommend to turn the new Activity Report (since v2.7) off by default as new features better should be activated only manually, especially when mails are generated. A dismissible backend notification would be better.
]]>I tried to migrate a password-protected site to another provider using the duplicator plugin. Duplicator works fine with unprotected sites, but password-protection obviously needs a special workaround. Can anybody give me some hints how to solve this problem?
]]>Hi,
Is there or will there be in the future an option to let the file in the theme folder work as a child theme template? In my environment I change this file to add a nofollow meta tag and other custom layouts. It would be good to have this, gives a little more freedom.
With thanks,
Demian
Hello, with the Pro package is it possible to set a different password for each authorized user who wants to access a specific page, and have them expire each on a different date?
]]>I have a free version of this plugin, and an entire password-protected website.
Yesterday I noticed (via jetpack/google analytics) some access fro US country where I didn’t know anybody. I’m interested in understanding weather my site has been “hacked”, meaning that someone found (don’t know how) the password.
Is there a report / log somewhere that tells me actually WHO connected (IP address) WHEN ?
I understood that this premium feature exists:
“Activity Log Reports – View the Activity Logs of each user, including their IP address, browser, status, date, and time of password attempts.”
If I buy license TODAY, will I be able to see YESTERDAY logs ?
Thank you
]]>You can see the problem clearly by watching the video.
]]>Hi there,
I just updated to version 2.6.7 and noticed a major issue:
Even though administrators are allowed in my settings, using the REST API is no more possible. It just returns a 403 with the error message that only logged in users can access it. Also explicitly allowing REST API access in the Password Protected settings doesn’t fix this problem. This results in issues like no more being able to edit block editor related content.
I downgraded to v2.6.6 and the error is gone.
Best regards,
Matthias
Getting lots of these warnings in debug.log
when in backend:
[04-Feb-2024 22:28:09 UTC] PHP Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in ../wp-includes/functions.php on line 7247
[04-Feb-2024 22:28:09 UTC] PHP Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in ../wp-includes/functions.php on line 2187
Reason is invalid path passed to realpath()
in freemius/start.php
in line 60 which causes false
to be passed on to wp_normalize_path()
/ wp_is_stream()
in WordPress core where a string
is expected and which triggers the above warnings.
Current freemius code:
$themes_directory = get_theme_root( get_stylesheet() );
$themes_directory_name = basename( $themes_directory );
$theme_candidate_basename = basename( dirname( $fs_root_path ) ) . '/' . basename( $fs_root_path );
if ( $file_path == fs_normalize_path( realpath( trailingslashit( $themes_directory ) . $theme_candidate_basename . '/' . basename( $file_path ) ) )
) {
It creates an invalid path (to themes
folder!) similar to this:
/homepages/28/d[...]/htdocs/wp-content/themes/password-protected/freemius/start.php
Result of realpath()
should be checked before normalizing it further.
Debug backtrace:
#0 ../wp-includes/functions.php(2180): wp_is_stream(false)
#1 ../wp-content/plugins/password-protected/freemius/includes/fs-essential-functions.php(27): wp_normalize_path(false)
#2 ../wp-content/plugins/password-protected/freemius/start.php(60): fs_normalize_path(false)
#3 ../wp-content/plugins/password-protected/includes/freemius.php(21): require_once('/homepages/28/d...')
#4 ../wp-content/plugins/password-protected/includes/freemius.php(46): pp_free_fs()
#5 ../wp-content/plugins/password-protected/password-protected.php(36): require_once('/homepages/28/d...')
#6 ../wp-settings.php(473): include_once('/homepages/28/d...')
#7 ../wp-config.php(136): require_once('/homepages/28/d...')
#8 ../wp-load.php(50): require_once('/homepages/28/d...')
#9 ../wp-blog-header.php(13): require_once('/homepages/28/d...')
#10 ../index.php(17): require('/homepages/28/d...')
Password Protected 2.6.6 with Freemius 2.5.10, WordPress 6.4.3, PHP 8.1.x
]]>My host 20i.com says my site caching is prevented by the following cookies:
bid_1_password_protected_auth and
wordpress_test_cookie cookies.
Is it possible to prevent these from being set?
]]>Fyi.
DeprecatedCalling get_class() without arguments is deprecated+
1Plugin: password-protectedDeprecatedCalling get_class() without arguments is deprecated+
1Plugin: password-protectedDeprecatedCalling get_class() without arguments is deprecated+
1Plugin: password-protected
]]>Hi, we isntalled and configured your plugin, work good but https://ibb.co/5vRwmBz ) if you go live the logo appears no correct… where is the configuration? we already installed login designer plugin. thank you and happy new year!
]]>Is it possible, perhaps with the pro version, where I can setup multiple passwords. And each password represents a different user or id in a metadata property. I am trying to hide or show elements, using other plugins, based on which password was filled in.
I just need an id or a role after login which i can access from my other plugin.
Is there anything like this i can achieve with the pro version?
Hi,
It seems the login page is unprotected.
Is this a bug, or am I noticing this for the first time just now?
Thanks.
]]>Hello i already deleted plugin but website still requires password (i tried deleted cookies). What to do? Web is bufetukocura.cz
]]>So; website good however downloaded and installed plugin & activated then lost connection to WordPress admin wp-admin resulting in error 500..
THis plugin once activated now prevents me from administrating wordpress? How can i disable the plugin in view of getting back the ability to use wp-admin?
]]>I isntalled the protection plugin and the login customizer… but the password protection is not fully changed… the background and the logo are not showing as the real login https://isabelyjesus.es/wp-login.php can you please check it? thank you very much!
]]>