Performance impact
-
Does it load anything in auto_load or frontend? How well optimized is it to not affect wp-admin performance?
-
Hi Rookie,
If you don’t want FileBird loading on front end, you can use this setting https://ninjateam.gitbook.io/filebird/controlling-frontend-access
Please let me know if there is anything I can ever help you with.
Kelly
@ninjateam Okay, that makes sense that you load and thanks for charing. But it does not make sense this is loaded for non logged in users. Does filebird load frontend for non-logged in users?
It should be restricted to only logged in.
What about all the folders you add in the uploads? Why not use native functions as categories and taxonomies from WordPress? Look at https://happyfiles.io/
If I want to fully uninstall your plugin, do you erase all tables and files from your plugin? Do not see any option for that and therefore I assume you still save everything?
Let me know how I properly can uninstall and delete everything from filebird if I want in the future. Thanks
- This reply was modified 4 years, 8 months ago by Rookie.
Hi there,
Let us answer your questions.
FileBird only has one js file in front end for non logged in users in case you use Gallery block from Gutenberg, please see https://ninjateam.gitbook.io/filebird/filebird-gutenberg-gallery
FileBird already uses native functions as categories and taxonomies from WordPress.
We will add the function for erasing soon.
Please let us know if there is anything we can ever help you with.
Kelly
- This reply was modified 4 years, 8 months ago by Ninja Team.
Okay so you say nothing is loaded for non logged in users if that plugin/block isn’t used?
FileBird already uses native functions as categories and taxonomies from WordPress.
Yes saw that now but also adds a lot of folders in the media folder /uploads/?
We will add the function for erasing soon.
Any ETA?
Hi,
Okay so you say nothing is loaded for non logged in users if that plugin/block isn’t used?
Yes, it is.
Yes saw that now but also adds a lot of folders in the media folder /uploads/?
What do you mean here? Can you send screenshot or something to explain this?
Any ETA?
It may come in a few days.
Best regards,
KellyWhat do you mean here? Can you send screenshot or something to explain this?
Once using filebird you add folders in the /uploads/ folder on the server. Install your plugin and check for yourself.
It may come in a few days.
Thanks
Hi Rookie,
FileBird does not create any folders on the server, please uninstall other plugins and try it again.
Best regards,
KellySorry, it was named similar to my bad.
Thanks, and I hope you could write us a nice review.
Have a nice day, Rookie!Kelly
@ninjateam Any update? 5 days ago now.
Thanks, it loads a lot of js on wp-admin and logged in frontend. I don’t like it so I would like to uninstall. But it leaves a lot of files and leftovers in the db. Could you please consider adding the clean all feature in uninstall?
Hi Rookie,
We are also working on other features and optimize code so it takes time, please be patient.
Thank you so much.Kelly
- This reply was modified 4 years, 7 months ago by Ninja Team.
I understand that. But could I get some rough ETA? talking a week or months?
2 months ago since last update? When can I expect this? Please let me know which files and tables I can remove manually after uninstall and you have me out of your way ??
- This reply was modified 4 years, 6 months ago by Jan Dembowski.
Hello,
First, you need remove all the relationships from term (created by FileBird) with attachment (post_ID) by using this sql you will see all relationships and delete all record
SELECT * FROM wp_term_relationships WHERE wp_term_relationships.term_taxonomy_id IN (SELECT wp_term_taxonomy.term_taxonomy_id FROM wp_term_taxonomy WHERE wp_term_taxonomy.taxonomy = 'nt_wmc_folder')
please change your prefix, in our database prefix is _wp
Secondly, remove all meta created by FileBird, to get that use this sql:
SELECT * FROM wp_termmeta WHERE wp_termmeta.meta_id IN (SELECT wp_terms.term_id FROM wp_terms JOIN wp_term_taxonomy ON wp_terms.term_id = wp_term_taxonomy.term_id AND wp_term_taxonomy.taxonomy = 'nt_wmc_folder')
Meta keys are ‘folder_position’ and ‘folder_type’
Finally, remove term first
select * from wp_terms JOIN wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id and wp_term_taxonomy.taxonomy = 'nt_wmc_folder'
after that remove the records (term_taxonomy):
select * from wp_term_taxonomy WHERE taxonomy = 'nt_wmc_folder'
Let me know if this helps.
Thanks,
Kelly- This reply was modified 4 years, 7 months ago by Ninja Team.
Thanks, will check it out during the day, any ETA once you will support clean uninstall in the plugin?
- The topic ‘Performance impact’ is closed to new replies.