• Resolved rweil55

    (@rweil55)


    I have a hosting service with 30 or so wordpress sites. I would like to know on which sites have a particular plugin installed. Do you know of a plugin that will do that.

    Thanks in advance for your time.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Usman Ali Qureshi

    (@usmanaliqureshi)

    Hi,

    Thanks for using Server Info plugin.

    I don’t fully understand the scanerio, could you please explain it a little more?

    You are saying that you have 30 different hosting services with 30 different websites, and you want to see which website has which plugin, please correct me if I’m wrong?

    Best regards,

    Usman

    Thread Starter rweil55

    (@rweil55)

    I have one hosting service account, with 30 different WordPress websites each in their own sub-directory under the main directory. Also there are a couple of these sub-directories of the main site that have several Word Press web sites. i.e there are some sites two levels down.

    I would like to get your server report for all of these sites with one click. It would take some code maybe like

    LookInDire("/home");
    function LookInDire($dire)
    {
        $msg = "";
        foreach (new DirectoryIterator($dire) as $fileInfo) {
            $fileName = $fileInfo->getFileName()
            if (is_dir("$dire$filename")) {
                $msg .= LookInDire("$dire$fileName");
            }
            if ("wp-content" == $fileName)
                $msg .= ProduceReport($dire);
        }
        return $msg;
    }
    • This reply was modified 11 months, 2 weeks ago by rweil55.
    • This reply was modified 11 months, 2 weeks ago by rweil55.
    • This reply was modified 11 months, 2 weeks ago by rweil55.
    Plugin Author Usman Ali Qureshi

    (@usmanaliqureshi)

    Hi,

    I will look into it, and add it in a future update. I appreciate your suggestion.

    Thanks & Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘plugin inforamation across multiple web site’ is closed to new replies.