• Resolved Rookie

    (@alriksson)


    Does it load anything in auto_load or frontend? How well optimized is it to not affect wp-admin performance?

Viewing 15 replies - 1 through 15 (of 21 total)
  • Plugin Author Ninja Team

    (@ninjateam)

    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

    Thread Starter Rookie

    (@alriksson)

    @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.
    Plugin Author Ninja Team

    (@ninjateam)

    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.
    Thread Starter Rookie

    (@alriksson)

    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?

    Plugin Author Ninja Team

    (@ninjateam)

    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,
    Kelly

    Thread Starter Rookie

    (@alriksson)

    What 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

    Plugin Author Ninja Team

    (@ninjateam)

    Hi Rookie,

    FileBird does not create any folders on the server, please uninstall other plugins and try it again.

    Best regards,
    Kelly

    Thread Starter Rookie

    (@alriksson)

    Sorry, it was named similar to my bad.

    Plugin Author Ninja Team

    (@ninjateam)

    Thanks, and I hope you could write us a nice review.
    Have a nice day, Rookie!

    Kelly

    Thread Starter Rookie

    (@alriksson)

    @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?

    Plugin Author Ninja Team

    (@ninjateam)

    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.
    Thread Starter Rookie

    (@alriksson)

    I understand that. But could I get some rough ETA? talking a week or months?

    Thread Starter Rookie

    (@alriksson)

    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 ??

    [ Please do not bump. ]

    • This reply was modified 4 years, 6 months ago by Jan Dembowski.
    Plugin Author Ninja Team

    (@ninjateam)

    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.
    Thread Starter Rookie

    (@alriksson)

    Thanks, will check it out during the day, any ETA once you will support clean uninstall in the plugin?

Viewing 15 replies - 1 through 15 (of 21 total)
  • The topic ‘Performance impact’ is closed to new replies.