auto generated robots.txt problem
Disallow with no trailing slash is the same as “allow all” – see here – nice find!
Disallow with no trailing slash is the same as “allow all” – see here – nice find!
I found the simplest way – just use Simply Exclude WordPress plugin. It has the option to exclude each post (or tag, for that matter) from front page, archive, search or feed. It works flawlessly. You can still view the posts by using direct links.
IMHO, If your site stores cookies on the visitor’s local computer, or if it captures any personal information (newsletter signup, contact forms that ask for name/email), or if the hosting place captures requests in a log, then you need GDPR compliance. Of if you use any analytics information, as in Google Analytics You can look … Read more
The wp_generate_auth_cookie() function is a pluggable function, meaning you can define a function with the same name in a plugin and your version will be used instead of the WordPress core function. The number of pluggable functions is limited, however. If you want a broad solution that works for all cookies, your lower-level Lua approach … Read more
You can fix this by changes site_url and home_url in your database. If you have access to your database(phpmyadmin) go to options table and change site_url and home_url from HTTPS to HTTP. You can also change it through wp-config file. define(‘WP_HOME’,’http://www.example.com’); define(‘WP_SITEURL’,’http://www.example.com’); See: https://codex.wordpress.org/Changing_The_Site_URL for possible methods. Hope this helps.
How to restrict access to uploaded files? There’s an answer there to help you restrict access to images and other downloadable files.
I am new to BuddyPress so I don’t know which functions and variables to use here. Read the codex – for example: http://codex.buddypress.org/developer-docs/the-bp-global/ You could create a function in your theme- functions.php or in bp-custom.php and call it from template files and pass it parameters like allowed_users, etc. Or you code hard-code something like this … Read more
Have you had a look at is_user_logged_in()? If you can explain how you’re serving the photos I can perhaps suggest a way to authorize some images to be shown and the rest hidden to only logged in users.
There is no need to stop “plugin enumeration”, just use plugins from a good home and make sure you have restrictive file permission setting on your server. In theory you can use htaccess to mask the original location of the plugin on the disk and write some code to serve any JS and CSS file … Read more
It will add a link to the selected page to wp-login.php and a link to it is included in the Erase Personal Data confirmation email. It also makes it easy for themes and plugins to link to it using the the_privacy_policy_link() function. The default themes all use this to add a link to the selected … Read more