davidki
Forum Replies Created
-
I asked because of number of links in one sitemap. I will have a lot of links that will be in the sitemap and with images there will be even more of those links.
What does it mean that your plugin has 1000 links by default in one sitemap? Is it 1000 article links? Or 1000 links to all URLs including images?
Because when I tried to use a filter to reduce the number of links in the sitemap to 10, there were 10 articles in one sitemap. But if each article has 20 images, one sitemap will not have 10 links, but 200.
Ok, my mistake.
Thank you.
Hi, I have a special use for it. But users using your plugin’s breadcrumbs would probably appreciate it too.
david
Forum: Plugins
In reply to: [Slim SEO - Fast & Automated WordPress SEO Plugin] Optimization of wp_optionsHello,
the latest version 3.22.2 correctly not generate rewrite rules for sitemaps if no post types or no taxonomies.But what happened recently after updating to 3.22.2 was that, link to homepage is now presented in sitemap-post-type-page.xml and also in sitemap-post-type-post.xml
Please, fix it,
thank you,
david
Forum: Plugins
In reply to: [Mailster AmazonSES Integration] Bug report – Mailster AmazonSES IntegrationThis messages I also see, when I try tu submit mailster form on front end.
Your original advice (from support) to hide error messages with “define(‘WP_DEBUG’, false);” is useless.
Errors need to be removed and not hidden from the eyes of users!!!
On the warning messages I see that problem is probably because of File(/.aws/config). No such file can be found anywhere in your “Mailster AmazonSES Integration” plugin.
Please, address this issue and ix it as soon as possible.
Thank you.
Thank you.
- This reply was modified 1 year, 6 months ago by davidki.
Forum: Plugins
In reply to: [WP Fastest Cache] Cache logs in databasePlease, can you add an option to enable / disable creating logs of deleted cache?
Not everyone is interested in these logs.
It unnecessarily increases the database with data that is not that important.
Thank you.
Forum: Plugins
In reply to: [My Favorites] Plugin doesn’t work on cached site properlyHello, Takashi.
Any progress with this problem?
Thank you.
Forum: Plugins
In reply to: [My Favorites] Plugin doesn’t work on cached site properlyHello Takashi,
I tested your beta plugin for cached websites and finally it works like it should on cached sites for logged in member.
I didn’t find any problem or errors except bad functioning of load more button.
This is the problem about which I wrote you before.
When I delete all posts from list using delete all button, everything work well.
But when I delete posts one by one, after the post count display “0”, after a while some posts display again without page reload.
The faster I delete posts one by one, the more they are displayed again. Even If I deleted they before.
I increased timeout for “3000”, but it doesn’t solve the problem.
Forum: Plugins
In reply to: [My Favorites] Plugin doesn’t work on cached site properlyHello,
thank you for your willingness to address this issue, because many people facing this problem with caching website with membership section.I tryed your plugin with changes in code in files “list.js” and “list.php” according to your suggestion.
As I expected, It doesn’t work.
I think you did not understand the problem correctly and how to test it properly.
In WP Fastest Cache plugin it needs to be unchecked checkbox “Don’t show the cached version for desktop to mobile devices”. So the website is cached even for logged in users.
The issue is about caching pages on a website that has a membership section.
WP Fastest Cache plugin disable caching for website admin by default.
So to test it properly, you need to use some membership plugin. Or some code which allows you tu logged in as website user (but not as admin).
It is best to test it as follows:
1. You as admin turn caching “ON” by enabling cache system in WP Fastest Cache plugin.
2. Open another web browser (in which you are not logged in as admin) and visit page with posts which is possible to add in your favorited posts. By this the page was cached.
3. Now go to login form and log as website user (not admin). After you logged in you can see in browser console html class “logged-in” in html <body> tag. (Page with login form need to be exclude from cache by addying rule in WP Fastest Cache plugin).
4. Now as logged in user go on previously cached page with posts which is possible to add in your favorited posts and add some posts to your favorited posts.
Because this page is cached, there will be no class “logged-in” in html <body> tag.
In page code, the value of variable “user_logged_in” in your script you are adding by wp_localize_script() will be empty (should be “1” for logged in user!).
Your plugin will add favorited posts in local storage instead of user meta for logged in user.
And therefor the logged in user on membership website will not see any of his favorited posts on page with lists of favorited posts.
When you log out, only now you will see favorited posts on page with lists of favorited posts. But these are the posts which you added in your favorited as logged in user!
I hope, now you better understand, that your plugin is not possible to use on website with membership section, because using uncached website is unnecessarily large attack on the web server.
So, please, once again try this:
you should generate and update value of variable “user_logged_in” in your script you are adding by wp_localize_script() with Ajax. So that the value of “user_logged_in” is always updated.
Thank you.
any answear?
Forum: Plugins
In reply to: [WP Fastest Cache] Apache with NGINX as reverse proxyI’m convinced that only Apache is not enough for big and complex wordpress website I am trying to build. And moreover some pages will be not cached, because I will have membership on website.
So please, can you write to me, what kind of problems I will need to solve?
What specifically won’t work properly when I use your plugin on Apache with NGINX as reverse proxy?
There is definitely a way for your plugin to work on Apache with NGINX as reverse proxy.
Hello,
I found, that my web hosting provider in php 8.0.1 do not have these php extensions:imagick, ionCube Loader, xmlrpc
Which of these php extensions your plugin needs?
Thank you.
Forum: Plugins
In reply to: [My Favorites] Load more button doesn’t work wellThank you for your reply,
for me need it was necessary to work with “$the_query->found_posts” insted of “$the_query->post_count”.
So I had to adjust code of plugin on several places.
Thank you, Takashi.
Forum: Plugins
In reply to: [My Favorites] Plugin doesn’t work on cached site properlyI discussed it with developer of WP Fastest Cache plugin and he wrote to me this about your plugin:
” the plugin is not compatible with the cached plugins. When a page is cached, the page is saved as a static html file so PHP does not work. The datas must be loaded via Ajax. ”
It means that if you don’t want to use my solution with checking of cookie “wordpress_logged_in”, you should generate and update value of variable “user_logged_in” in your script you are adding by wp_localize_script() with Ajax. So that the value of “user_logged_in” is always updated.
Can you to this, please?