Forum Replies Created
-
AuthorPosts
-
You can post the credentials here as Private Reply.
Do you mean domain name by saying Host name?
Hi, sorry for the inconvenience caused. Actually the options marked * (asterisk) are Beta options. But that does not mean it won’t work. It might not work in some sites due to the theme or plugins used.
In order to make new wp-admin path work, you have to make following changes:
In wp-config.php you need to add following line before require_once(…):
define(“ADMIN_COOKIE_PATH”, “/NEW_WPADMIN_NAME”);You also need to update your .htaccess file by adding following line before ‘RewriteCond REQUEST_FILENAME} !-f’:
RewriteRule ^NEW_WPADMIN_NAME/(.*) /wp-admin/$1 [QSA,L]Did you change the options Category Base, Category Query, Tag Base, Tag Query in HMWP settings? If so try clearing these.
Or else you can click “reset settings to WP” in start tab and then apply “medium privacy more compatibility” scheme.
If you cannot provide us with debug report (as you are not able to login), then we’ll need wp-admin access details and FTP details to look into the issue further.
Yes, please provide us with backend credentials so that we can view the page source and fix other issues.
Hi, what settings did you apply in HMWP? Can you please generate debug report (from HMWP start tab) and post it here as private reply.
Your new login URL after activating and applying settings in HMWP is http://www.yourdomain.com/wp-login.php?hide_my_wp=1234
Hi, we are looking into it. Hope to get back to you soon.
This reply has been marked as private.Hi, what settings did you apply in HMWP plugin? Can you please generate debug report (from HMWP start tab) and send it to us here as private reply. Please add the details here itself as Private Reply so that it’s easier to work on.
Hi, not sure if the issue is related to HMWP plugin or not. If it is, then simply renaming hide_my_wp plugin folder in /wp-content/plugins/ should have worked.
Can you please let us know your website backend details (as private reply) so that we can have a look at the issue further.
Hi, the malicious requests (possible hack attempts) are detected by HMWP IDS and you’ll be notified in the Log or by email. But you need not worry as HMWP PHP IDS will take care of this and will block such malicious requests if Impact level is more than 20 (default value specified in HMWP PHP IDS). You need not delete them.
So, is it that the site content becomes invisible after logout, only when HMWP is active? What if you deactivate HMWP? And what if you simply visit your site as normal visitor? Do let us know. Also, you need to delete/flush cache after applying settings in HMWP.
Please find my comments in the attached Doc file.
Simply applying “medium privacy more compatibility” scheme should be enough and will hide wordpress and theme from your website. However depending upon the theme/plugins you are using you might need to enable other options if wordpress/theme detected. For example you might need to replace some text/words in site’s page source.
Please, let us know your website URL and leave HMWP active with “medium privacy more compatibility” scheme applied so that we can check.
Attachments:
You must be logged in to view attached files.Social login in this page “yourdoamin.com/my-account/” was working fine. But in this page “yourdoamin.com/wp-login.php” it wasn’t working correctly as social login plugin didn’t generate correct URLs. To fix this I’ve added following 2 lines in “replace in HTML” option under general settings tab of HMWP:
wp-login.php?hide_my_wp[equal]0625?loginFacebook[equal]1=wp-login.php?hide_my_wp[equal]0625&loginFacebook[equal]1
wp-login.php?loginTwitter[equal]1=wp-login.php?hide_my_wp[equal]0625&loginTwitter[equal]1Also, I have applied “medium privacy more compatibility” scheme from HMWP start tab.
Add the following in Replace in HTML option:
WP Fastest Cache (old)
MyCache (new)If this doesn’t work then you’ll need to manually edit Fastest cache plugin’s code.
In file /wp-fastest-cache/inc/cache.php, replace this function
public function cacheDate($buffer){
.
.
.
}with this
public function cacheDate($buffer){
if($this->isMobile() && class_exists(“WpFcMobileCache”)){
return “”;
}else{
return “”;
}
}-
This reply was modified 9 years, 8 months ago by
Suman M..
-
This reply was modified 9 years, 8 months ago by
-
AuthorPosts