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
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 2 years, 2 months ago by
rweil55.
-
This reply was modified 2 years, 2 months ago by
rweil55.
-
This reply was modified 2 years, 2 months ago by
rweil55.
Hi,
I will look into it, and add it in a future update. I appreciate your suggestion.
Thanks & Regards