Raghunath Gurjar
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Categories Widget] XSS flaw – high level security issueHi @prandrews73 @em-m @crzyhrse , thanks for your patience. Our plugin was restored with latest version and I hope you all have updated with latest version and enjoying our plugin.
Thanks again for your valuable feedback. I would request you to leave your valuable feedback by giving best rate to our plugin.
Thanks
Raghu- This reply was modified 1 year, 5 months ago by Raghunath Gurjar.
Forum: Reviews
In reply to: [Login with OTP] Simple and Straight Forwardhi @sansolo , Thanks for your message. We have tested our plugin for mobile and desktop and it’s working fine. Some time due to js conflict such issue can come. If you can share your site link then we can review it and let you know cause of the issue for mobile.
Forum: Reviews
In reply to: [Login with OTP] Simple and Straight ForwardHi @sansolo , Do you want login through the mobile OTP ? or any other issue you are facing with plugin? could you please explain the issue so that we can help you in proper way. Currently we are providing only email otp feature for our customers. if you are looking for mobile OTP login solution then please contact us at [email protected] for mobile otp login solution. Also as your review is first for our plugin so it does matter for us. I would humble request you to review your rating feedback again and provide best rating to our plugin.
Forum: Plugins
In reply to: [WP Categories Widget] XSS flaw – high level security issueHi @prandrews73 @crzyhrse @em-m , we are sorry to hear that you are facing issues due to our plugin. Your feedback is most valuable for us to make our plugin more secure and smooth, so thanks to all for your valuable le feedback. You all can contact us at [email protected] to resolve such security issues on priority basis. Issue was coming only for admin area so without login in admin spam user can’t access the ajax based url so don’t worry we are here always to caring you. But Anyway we have fixed the “Cross-site-Scripting” issue and released new version with some advance features. currently our plugin is under review for security checkup. please update the plugin when it will be ready for download.
Thanks again for your valuable feedback.
Thanks
Forum: Reviews
In reply to: [WP Categories Widget] Doesn’t WorkHi @te5la, we are sorry to hear that you are facing issue with our plugin. Could you please explain the issue little more and share your website link so that we can help you to solve the issue. And it will be helpful for other users as well.
You can send your query directly on our email [email protected]
Hi @theloot52, Thank you for your valuable feedback.
Thanks
WP-EXPERTS.IN TeamHi @giftieco, Thank you so much for your valuable feedback and suggestions. We have noted your suggestions and in new version we will add suggested features in our plugin add-on
Customer suggestions are key to success any business.
You can visit our official site to know about other WordPress plugins.
https://www.wp-experts.in/products/Thanks
WP-EXPERTS.IN TeamForum: Reviews
In reply to: [WP Categories Widget] Max control but buggyHi Martin, we are really sorry to hear you are facing issue and not got any response from our team on mail. actually we have seen your message during plugin weekly review and checked your request in our mail box, it was in spam folder that’s why we have missed it.
we have sent you email, please check your inbox and reply. we will try to reply you asap and will resolve your issue. To avoid spam delay related issue please cc email at [email protected] as well.
We are looking forward to hear you soon.
Thank you
Forum: Reviews
In reply to: [Protect WP Admin] NOT compatible with WP 5.6We are sorry to hear that you are facing issue due to our plugin. I want to let you know that in wordprsss 5.6 version WordPress has done major changes to flush the custom rewrite and that’s why after update WordPress to 5.6 htaccess file is going to reset with default rewrite rules code. Due to these changes mostly all rewrite rules related plugin impacted.
Please replace existing code of your htaccess file
#This Apache config file was created by Duplicator Installer on 2020-09-22 13:50:01. #The original can be found in archived file with the name htaccess.orig # BEGIN WordPress # Les directives (lignes) entre ??BEGIN WordPress?? et ??END WordPress?? sont générées # dynamiquement, et doivent être modifiées uniquement via les filtres WordPress. # Toute modification des directives situées entre ces marqueurs sera surchargée. <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
With this one#This Apache config file was created by Duplicator Installer on 2020-09-22 13:50:01. #The original can be found in archived file with the name htaccess.orig # BEGIN WordPress # Les directives (lignes) entre ??BEGIN WordPress?? et ??END WordPress?? sont générées # dynamiquement, et doivent être modifiées uniquement via les filtres WordPress. # Toute modification des directives situées entre ces marqueurs sera surchargée. <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteRule ^myadmin/?$ /wp-login.php [QSA,L] RewriteRule ^myadmin/register/?$ /wp-login.php?action=register [QSA,L] RewriteRule ^myadmin/lostpassword/?$ /wp-login.php?action=lostpassword [QSA,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
NOTE: Don’t forget to update the value of new admin slug i.e myadmin with your own new admin slug that had added during setup new admin url.
For any query you can contact us at [email protected]
Many Thanks
RaghunathForum: Reviews
In reply to: [Protect WP Admin] Cannot loginHi Pivonka, We are sorry to here that you are facing issue with latest WordPress 5.6 version. WordPress has released some major changes in 5.6 that’s why problem is coming with all security related plugin.
Please add given below code into your htaccess file to make plugin working properly.
‘RewriteRule ^admin_slug_goes_here/?$ /wordpress/wp-login.php [QSA,L]
RewriteRule ^admin_slug_goes_here/register/?$ /wordpress/wp-login.php?action=register [QSA,L]
RewriteRule ^admin_slug_goes_here/lostpassword/?$ /wordpress/wp-login.php?action=lostpassword [QSA,L]
‘
Sample Code‘# BEGIN WordPress
# The directives (lines) between “BEGIN WordPress” and “END WordPress” are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteRule ^admin_slug_goes_here/?$ /wp-login.php [QSA,L]
RewriteRule ^admin_slug_goes_here/register/?$ /wp-login.php?action=register [QSA,L]
RewriteRule ^admin_slug_goes_here/lostpassword/?$ /wp-login.php?action=lostpassword [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress’
Note: Please don’t forget to replace “admin_slug_goes_here” value as per your new admin slug
You can send your query directly to us at [email protected]
Forum: Plugins
In reply to: [Protect WP Admin] App does not work after the latest update of WP 5.6we are sorry to hear that you are facing issue with latest version of wp 5.6.
@popallo @rdhtdr you can add given below code directly into your htaccess file to make plugin working properly.
RewriteRule ^admin_slug_goes_here/?$ /wordpress/wp-login.php [QSA,L] RewriteRule ^admin_slug_goes_here/register/?$ /wordpress/wp-login.php?action=register [QSA,L] RewriteRule ^admin_slug_goes_here/lostpassword/?$ /wordpress/wp-login.php?action=lostpassword [QSA,L]
Sample Code
# BEGIN WordPress # The directives (lines) between "BEGIN WordPress" and "END WordPress" are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteRule ^admin_slug_goes_here/?$ /wp-login.php [QSA,L] RewriteRule ^admin_slug_goes_here/register/?$ /wp-login.php?action=register [QSA,L] RewriteRule ^admin_slug_goes_here/lostpassword/?$ /wp-login.php?action=lostpassword [QSA,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Note: Please don’t forget to replace “admin_slug_goes_here” value as per your new admin slug
You can send your query directly to us at [email protected]
- This reply was modified 4 years, 3 months ago by Raghunath Gurjar.
- This reply was modified 4 years, 3 months ago by Raghunath Gurjar.
- This reply was modified 4 years, 3 months ago by Raghunath Gurjar.
Forum: Plugins
In reply to: [WP Categories Widget] Category updates not showing in WidgetHi thanks for report the issue.
We have fixed the issue in version 1.9 , please update plugin with latest one.
https://www.wp-experts.in/products/wp-categories-widget-addon/Feel free to contact me for any query.
Forum: Plugins
In reply to: [WP Categories Widget] StyleHi there, Thanks for your message. If you want to make widget style similar to your theme design then you can do it by css code, you can override widget css using theme style.css or customize section( inline css) as well.
If you have not css knowledge then don’t worry, we have provided an option in our plugin add-on widget to manage css from back end so you can easily manage style of your widget. please visit our official site to know more about add-on widget featureshttps://www.wp-experts.in/products/wp-categories-widget-addon/
Thanks
Query has been solved.
Forum: Plugins
In reply to: [Protect WP Admin] PHP Warning: getimagesize(): Filename cannot be empty ..Issue was fixed in last version.