Latitude, Longitude. only.
I have now clicked on the overview page the button "Refresh metadata". Now the page is constantly being reloaded. This is blocked in Firefox. I had to click each time. Then I switched to Chromium. Now the site loads hundreds of times. And there is no information about how often that reloads and how long that will take. There are ~ 15,000 files.
> Refresh Metadata
> Metadata refresh is incomplete
>
> This process should continue automatically. If not press:
>
> Continue!
OK, maybe it's just because the database table "images" was not complete when scanning the files.
This helps a little bit.
<pre>[code]<?php
$dbcon = new mysqli("localhost", "user", "passwort", "database");
if (!$dbcon) {
$mysqliconnecterror = mysqli_connect_error();
exit("Connect failed: %s\n $mysqliconnecterror");
}
$result = mysqli_query($dbcon, "SELECT COUNT(*) AS total, COUNT(EXIFGPSLatitude) AS counter FROM images");
$result_fetch = mysqli_fetch_assoc($result);
$total = $result_fetch['total'];
$counter = $result_fetch['counter'];
echo $total;
echo "
";
echo $counter;
echo "
";
echo $total - $counter;
echo "
";
mysqli_close($dbcon);
?>[/code]</pre>