Hi,
Just upgraded to WP 3.5.1 and it has been a few months since I have been in here. On the plugin page there is no link to change the site wide password for your plugin. (Setting > Privacy tab doesn’t seem to exist anymore.) Please let me know where I should look (and why isn’t it included right on the plugin page?) Many Thanks! -Wildman
]]>With my blog setup as
the redirect was calculating the URL as
https://hostname/blogname/blogname/index.php
I had to change the php code to the following for it to work at my site:
$path = parse_url(get_bloginfo('url'),PHP_URL_SCHEME) . '://' . parse_url(get_bloginfo('url'),PHP_URL_HOST).$_SERVER['PHP_SELF'];
that line is located here:
<p><strong>Sorry!</strong> You must <a href="<?php bloginfo('url'); ?>/wp-login.php?redirect_to=<?php
$path = parse_url(get_bloginfo('url'),PHP_URL_SCHEME) . '://'.parse_url(get_bloginfo('url'),PHP_URL_HOST) . $_SERVER['PHP_SELF'];
echo $path;
?>&reauth=1">log in</a> to view this page.</p>
]]>
How to activate within my host account via the php code?
]]>My goal is to protect a certain folder within wp-content/uploads, or perhaps the entire wp-content/uploads folder (and all sub-folders within it). Ideally, no one could access an uploaded file within this folder unless the user is logged in to the site.
I like the simplicity of this plugin, and think it could work.
Would this be possible? Any suggestions as to how to add a small edit to the beginning of the php file to specify that this plugin should only be used if the URL being targeted is within this folder?
]]>Can′t find where to administrate the plugin.
]]>dbhynds,
I guess the functionality is already available in 3.2 version of WordPress. A user must be subscribed or should be invited by Site admin to access a particular blog
How the plugin makes different that that? I guess that I am missing something
Thanks !
]]>