darkpollo
Forum Replies Created
-
Forum: Plugins
In reply to: [Cache Enabler] Jetpack and Cache EnablerThanks.
I just needed to discard that option.
I will test some things on my side and let you know if get stuck.Forum: Plugins
In reply to: [Redis Object Cache] Bbpress comments leak emailsSorry I couldnยดt reply before.
We fixed the issue and it was not a Redis issue but a problem with cache and the way the cookies are set on bbpress.
They use the same cookies as WordPress but they cannot be disabled as they do not provide a filter or a hook to do it.
A big issue on this GDPR era, but nothing to do with your plugin.Sorry for the confusion.
Forum: Plugins
In reply to: [Redis Object Cache] Bbpress comments leak emailsThis is not Buddyppres but bbpress forums, there are no groups, they are topics and comments on topics, so comments and posts.
Does the system store the comment email data somewhere?I will create the topic right away and send you the link.
Forum: Plugins
In reply to: [Custom Permalinks] How to restore to defaults?Thanks! ๐
Forum: Plugins
In reply to: [Custom Permalinks] How to restore to defaults?Yes, I need that, thanks.
We have 5k permalinks to amend so we need to be able to extract them somehow.Thanks!
That is fast!Great support. ๐
I prefer to keep the support for the free plugin here on the free forum, so others can benefit from it.
Please update the plugin as soon as you can.Thank you for taking care of it.
Best regards.
Forum: Plugins
In reply to: [Custom Permalinks] How to restore to defaults?Is there any way to export this or get it from the database?
Thanks
I am sorry but I cannot do that. It is a development site.
What I can give you is the error from Query Monitorwp-content/plugins/instagram-feed/inc/admin/actions.php:1201 sprintf() wp-content/plugins/instagram-feed/inc/admin/actions.php:1201 sbi_notices_html() wp-includes/class-wp-hook.php:287 do_action('admin_notices') wp-admin/admin-header.php:292You should be able to detect the issue with that.
I have the same issue. PHP 7.4 here.
Forum: Plugins
In reply to: [Import and export users and customers] Buddypress xprofile export?Buddyboss is a plugin.
It is like buddypress but changing the folder name.
Using the folder name is not following the code good practices, I am sorry.
Forget about buddyboss.
Change the buddypress folder to “Buddypress-master” or any other name.
This also does not allow for forks or modifications of plugins, which is the nice thing about GPL2. So lets try to follow it. ๐Look this:
https://wordpress.stackexchange.com/questions/99444/is-plugin-active-returning-false-on-active-plugin
The part:
“As an implementation note: Avoid these checks. Some users rename plugin names or directories. Test for the functions you will actually use instead, eg:”A nice post from a great developer
https://pippinsplugins.com/checking-dependent-plugin-active/Now tell me Pippin does not know what he is talking about.
Forum: Plugins
In reply to: [Import and export users and customers] Buddypress xprofile export?Forum: Plugins
In reply to: [Import and export users and customers] Buddypress xprofile export?I am sure, I just removed the lines myself and made the export I needed.
It is not a good practice to check for folder names, as the folder name is not really important for a plugin to work.
You can install buddypress on buddypress-master and it will work the same, but your plugin will fail to detect it.Note: commenting that line seems to do the trick.
I will do more tests in the future, but I do not see any issue on the downloads with that missing header:
#header( "Content-length: $fsize" );Forum: Plugins
In reply to: [Import and export users and customers] Buddypress xprofile export?Oh.
New information.
The data is only there if I upload the plugin buddypress (I am using buddyboss).
On the files
import-users-from-csv-with-meta\addons\buddypress.php
import-users-from-csv-with-meta\importer.php
import-users-from-csv-with-meta\import-users-from-csv-with-meta.phpYou have checks that look if the folder buddypress/ is there, it does not check if it is active, only if the files are there, which makes no sense to me.
On my original installation it was not called buddypress and on the secondary test with buddyboss, it is called buddyboss and not buddypress.
I removed those checks and conditionals and now all the data is exported correctly.
In case you want to fix the code, to check for activation or functions, not for files and folders.Best regards