Home › Forums › WordPress Plugins › Hide My WP › Directory listing still visible + W3TC Info + Still visible on Wappalyzer
- This topic has 7 replies, 2 voices, and was last updated 10 years, 6 months ago by Hassan.
-
AuthorPosts
-
May 18, 2014 at 11:26 am #740nickPost count: 7
Firstof all great plugin easy to use, i have few questions please help,
Question1 – I want to hide this directory (want to make 404, because all plugin are visible in zip)
For Ex: http://www.mywebsite.com/wp-content/themes/Sofhiathemes/plugins
(Please provide an example for any solution)Question2 – Want to hide this directory http://www.mywebsite.com/wp-content/uploads (want to make 404, because all images are visible in directories)
(Please provide an example for any solution)Question3 – How can i hide W3 Total Cache debug info which is visible in bottom of my website like this PLEASE SEE URL BELOW –>
<!– W3 Total Cache: Page cache debug info:
Engine: disk: enhanced
Cache key: http://www.domain.com/_index.html
Caching: enabled
Creation Time: 0.009s
Header info:
Last-Modified: Thu, 01 Jan 1970 00:00:00 GMT
Expires: Thu, 15 May 2014 15:30:13 GMT
Pragma: public
Cache-Control: max-age=3600, public
X-Powered-By: W3 Total Cache/0.9.4
–>
You can see in above Script that is W3TC info is visible at bottom of website and I want to hide this all info So,1. I have already enabled compression page option Minify is set to “SAFE” . But it will not hide this W3TC info
2. So i have another option that is Words into HTML Output, Here i want know how can i use this option to hide this all W3TC Info
(I have Read instructions but its hard to understand HTML Output option in HMWP, how can we use in this situation)
Question4 – How can i hide the word “ThemeName” from this –> widget_ThemeName_widget (showing in source code, please see below)
For example in source code :
<div class=”widget widget_ThemeName_hotpostnews”> <h3 class=”sidebar2-title”>Recent Hot Topics</h3><div class=”clear”></div>
(Please provide an example for any solution)Question5 – How Hide or disable this xmlrpc.php ? Source Code Eg. <link rel=”pingback” href=”http://www.domain.com/xmlrpc.php”/>
(Please provide an example for any solution)Question6 – Is .htaccess is secure from hackers with 655 permission ? If No than how can i secure .htaccess ? Can i use this (see below) to secure
.htacess so it will not creates any conflict with Hide My Wp .
<Files ~ “^.*\.([Hh][Tt][Aa])”>
order allow,deny
deny from all
satisfy all
</Files>(Please provide an example for any solution)
Question7 – Is there any way to disable all directories (so user get 404 page) ?
(Please provide an example for any solution)Question8 – Wappalyzer showing my website is a wordpress website + Its Showing that we have using W3TC plugin and with its version.
Website .htaccess file
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteRule ^ext/193d326f/(.*) /ext/advanced-social-widget/$1 [QSA,L]
RewriteRule ^ext/8eca1565/(.*) /ext/all-in-one-seo-pack/$1 [QSA,L]
RewriteRule ^ext/57affcba/(.*) /ext/bugmebar/$1 [QSA,L]
RewriteRule ^ext/19b8b81b/(.*) /ext/easy-social-share-buttons/$1 [QSA,L]
RewriteRule ^ext/29f175ba/(.*) /ext/meta-box/$1 [QSA,L]
RewriteRule ^ext/5341cd20/(.*) /ext/mag-faq/$1 [QSA,L]
RewriteRule ^ext/d04d6567/(.*) /ext/mag-jobs/$1 [QSA,L]
RewriteRule ^ext/9d9ee226/(.*) /ext/mag-codes/$1 [QSA,L]
RewriteRule ^ext/a0c3c960/(.*) /ext/tablepress/$1 [QSA,L]
RewriteRule ^ext/e6965f8c/(.*) /ext/tablepress-responsive-tables/$1 [QSA,L]
RewriteRule ^ext/dea2b53d/(.*) /ext/w3-total-cache/$1 [QSA,L]
RewriteRule ^other/(.*) /wp-includes/$1 [QSA,L]
RewriteRule ^file/(.*) /wp-content/uploads/$1 [QSA,L]
RewriteRule ^ext/(.*) /wp-content/plugins/$1 [QSA,L]
RewriteRule ^skin/main\.css //index.php?style_wrapper=1 [QSA,L]
RewriteRule ^skin/(.*) /wp-content/themes/GadgetMag/$1 [QSA,L]
RewriteRule ^ajax /wp-admin/admin-ajax.php [QSA,L]
RewriteRule ^user_submit\.php /wp-comments-post.php [QSA,L]
RewriteRule ^wp-content/themes/GadgetMag/screenshot\.png|readme\.html|license\.txt|wp-content/debug\.log|wp-includes/$ /nothing_404_404 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
- This topic was modified 10 years, 8 months ago by nick.
May 25, 2014 at 8:06 am #747June 3, 2014 at 1:24 pm #764nickPost count: 7Hello… If Anyone have solution for these above problems ? please add msg here.
Thanks
June 23, 2014 at 12:35 pm #769HassanPost count: 955Sorry for delay,
Answer 1: Just add following code to Replace URLs
wp-content/themes/Sofhiathemes/plugins==nothing_404_404Answer 2: Do not do it! Images are used in front-end. If you do it all images on your site wont be displayed correctly.
Answer 3: You do not to do it! Read our FAQ about W3TC. All of debug info will be hided for untrusted users by default. Just log out and take a look!
Answer 4:Just add following line to Replace in HTML:
widget_ThemeName_hotpostnews=widget_hotpostnews
Stick in your mind that if this class used by your theme to justify its appearance you also need to open your stylesheet files and replace all ‘widget_ThemeName_hotpostnews’ with ‘widget_hotpostnews’Answer 5:Just add following line to Replace in HTML:
<link rel[equal]”pingback” href[equal]”http://www.domain.com/xmlrpc.php”/>=
(= without anything means replace it with nothing i.e. remove it)Answer 6: Yes, 655 permission is secure. Even 777 permission is secure for most of current servers. You do not need to do any additional work.
Answer 7: If you enable disable directory listing this will be done (only v3.0+)
Answer 8: Read this FAQ: http://codecanyon.net/item/hide-my-wp-no-one-can-know-you-use-wordpress/4177158/faqs/18294
June 23, 2014 at 7:54 pm #771nickPost count: 7Thank you !
Some problems have solved with Hide My Wp – 3.0 Beta Version But one problem still there… W3TC Debug Info . How can i hide this ?
W3 Total Cache debug info is visible in bottom of my website Please check screenshot here –>
Thank you
Regards
NickAttachments:
You must be logged in to view attached files.June 24, 2014 at 5:31 pm #779HassanPost count: 955You do not need to remove it! It will be hide for non-logged in or untrusted users! Just logged out and check out source code!
June 24, 2014 at 5:46 pm #780nickPost count: 7Yes I know we did”nt need to remove it but still it appears in source code when we logged out. I have checked source code after logged out in all browsers the w3tc debug info still appears, please suggest any effective solution to hide this.
Thank you.
June 26, 2014 at 3:04 pm #785HassanPost count: 955Please provide login details as a private reply and I’ll take a look!
-
AuthorPosts
You must be logged in to reply to this topic.