Friendica: Photos uploaded in comments get no permissions

Created on 6 Mar 2020  路  76Comments  路  Source: friendica/friendica

Expected behavior

  • I make a public comment to a public post.
  • I attach a photo.
  • The photo is public.

Actual behavior

  • The photo has no permissions.

If I go to the photo and click Permissions, it says it is public, and if I submit at that point, it becomes actually public.

Looks like the image does not get any permission set - not even the public one. It looks like 'public' but in fact it is somehow set to 'none'.

https://libranet.de/display/0b6b25a8-125e-5f4d-0f94-670912314070

Friendica version you encountered the problem

Friendica, version 2020.03-dev that is running at the web location https://libranet.de. The database version is 1335, the post update version is 1329.

Bug

Most helpful comment

Sounds like we finally nailed it?

All 76 comments

Basically the comment version of #8335 / #5805 (which I don't experience).

Could also be set to 'only myself' because the user who created the comment can see the image while everyone else gets the red circle slash.
I need to check the permission in the DB.

@annando In what table the permission set of uploaded photos is stored nowadays? photo, permissionset, item?

I believe it still is in the photo table.

Yeah. Thanks! I found it.

This is what happens when I upload a photo to a public (!) comment (directly by pressing the upload image button in the 'create comment' box:

MariaDB [friendica]> select uid, guid, `resource-id`, allow_cid, allow_gid, deny_cid, deny_gid from photo where `resource-id` like '16812310485e638b4aa4700587198445' limit 1000;
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
| uid | guid             | resource-id                      | allow_cid | allow_gid | deny_cid | deny_gid |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
|   2 | 0b65e638b4aa49d9 | 16812310485e638b4aa4700587198445 | NULL      | NULL      | NULL     | NULL     |
|   2 | 0b65e638b4aa49d9 | 16812310485e638b4aa4700587198445 | NULL      | NULL      | NULL     | NULL     |
|   2 | 0b65e638b4aa49d9 | 16812310485e638b4aa4700587198445 | NULL      | NULL      | NULL     | NULL     |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
3 rows in set (0.000 sec)

Permissions are set to NULL instead of '' (empty).

Comment with the image. I can see it (when authenticated) but nobody else.
https://libranet.de/display/0b6b25a8-135e-638b-5a6a-648715215908

Btw. why are there three rows for one photo?

Ah! Three different stored sizes of the image, I guess.

As a comparison this is how the permissions are set when I upload a public image via the 'photos' page:

MariaDB [friendica]> select uid, guid, `resource-id`, allow_cid, allow_gid, deny_cid, deny_gid from photo where `resource-id` like '11892690225e639540e8a97360926165' limit 1000;
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
| uid | guid             | resource-id                      | allow_cid | allow_gid | deny_cid | deny_gid |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
|   2 | 0b65e639540e8c25 | 11892690225e639540e8a97360926165 |           |           |          |          |
|   2 | 0b65e639540e8c25 | 11892690225e639540e8a97360926165 |           |           |          |          |
|   2 | 0b65e639540e8c25 | 11892690225e639540e8a97360926165 |           |           |          |          |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
3 rows in set (0.000 sec)

I posted similar issue before, possibly the same: #8335

@SpcCw Please check with the current RC.

@annando my bad, seems to work on RC.

@clacke could you test with the current RC as well? Then we could close this issue.

Now it doesn't work at all. When I upload and share a photo as default URL-link the photo doesn't show up (empty comment). When I share it only with IMG-BBCode tags I get a broken image/photo as if the image doesn't exist.
I see both when authenticated. But anonymous viewers and remote users get a 404.

https://libranet.de/display/0b6b25a8-325e-67df-5e72-c09781033398

I need to enable the new privacy option 'make all posted pictures accessible' before I upload and share the image to make it work.
I don't know why the new option has an impact. Everything in this thread should be completely public.

So, I guess the permissions stored in the DB are still wrong. Will check now...

Yup. Permission is still NULL. So, the bug isn't fixed.

MariaDB [friendica]> select uid, guid, `resource-id`, allow_cid, allow_gid, deny_cid, deny_gid from photo where `resource-id` like '62692750115e67e074da66f553770234';
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
| uid | guid             | resource-id                      | allow_cid | allow_gid | deny_cid | deny_gid |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
|   2 | 0b65e67e074da7e0 | 62692750115e67e074da66f553770234 | NULL      | NULL      | NULL     | NULL     |
|   2 | 0b65e67e074da7e0 | 62692750115e67e074da66f553770234 | NULL      | NULL      | NULL     | NULL     |
|   2 | 0b65e67e074da7e0 | 62692750115e67e074da66f553770234 | NULL      | NULL      | NULL     | NULL     |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
3 rows in set (0.000 sec)

Ok. I checked the whole photo table.

I have 79 rows with permissions set to NULL. The oldest is from 2018-04-05 19:54:44. The newest is from today 2020-03-12 13:07:10.

Nope https://github.com/friendica/friendica/pull/8410 doesn't solve it.

Test: https://libranet.de/display/0b6b25a8-195e-6a58-7182-97d010630788

I made an interesting observation! After uploading the image via 'comment box -> image button -> upload button -> select image from my device' the permissions were not NULL. But the photo permissions were set to NULL after/on submitting the comment.

Step 1: upload photo from device to friendica done:

MariaDB [friendica]> select uid, guid, `resource-id`, allow_cid, allow_gid, deny_cid, deny_gid from photo where `resource-id` like '96753702115e6a5ad3cbede859478284';
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
| uid | guid             | resource-id                      | allow_cid | allow_gid | deny_cid | deny_gid |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
|   2 | 0b65e6a5ad3cbfee | 96753702115e6a5ad3cbede859478284 | <2>       |           |          |          |
|   2 | 0b65e6a5ad3cbfee | 96753702115e6a5ad3cbede859478284 | <2>       |           |          |          |
|   2 | 0b65e6a5ad3cbfee | 96753702115e6a5ad3cbede859478284 | <2>       |           |          |          |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
3 rows in set (0.000 sec)

Step 2: Selecting the image from photo album to insert it into comment:

MariaDB [friendica]> select uid, guid, `resource-id`, allow_cid, allow_gid, deny_cid, deny_gid from photo where `resource-id` like '96753702115e6a5ad3cbede859478284';
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
| uid | guid             | resource-id                      | allow_cid | allow_gid | deny_cid | deny_gid |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
|   2 | 0b65e6a5ad3cbfee | 96753702115e6a5ad3cbede859478284 | <2>       |           |          |          |
|   2 | 0b65e6a5ad3cbfee | 96753702115e6a5ad3cbede859478284 | <2>       |           |          |          |
|   2 | 0b65e6a5ad3cbfee | 96753702115e6a5ad3cbede859478284 | <2>       |           |          |          |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
3 rows in set (0.000 sec)

Step 3: Submitting the comment...

MariaDB [friendica]> select uid, guid, `resource-id`, allow_cid, allow_gid, deny_cid, deny_gid from photo where `resource-id` like '96753702115e6a5ad3cbede859478284';
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
| uid | guid             | resource-id                      | allow_cid | allow_gid | deny_cid | deny_gid |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
|   2 | 0b65e6a5ad3cbfee | 96753702115e6a5ad3cbede859478284 | NULL      | NULL      | NULL     | NULL     |
|   2 | 0b65e6a5ad3cbfee | 96753702115e6a5ad3cbede859478284 | NULL      | NULL      | NULL     | NULL     |
|   2 | 0b65e6a5ad3cbfee | 96753702115e6a5ad3cbede859478284 | NULL      | NULL      | NULL     | NULL     |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
3 rows in set (0.000 sec)

UID 2 is my UID.

Looks like on submit the fields are reset to default values. And the default is........ NULL.

MariaDB [friendica]> desc photo;
+---------------+-----------------------+------+-----+---------------------+----------------+
| Field         | Type                  | Null | Key | Default             | Extra          |
+---------------+-----------------------+------+-----+---------------------+----------------+
| id            | int(10) unsigned      | NO   | PRI | NULL                | auto_increment |
| uid           | mediumint(8) unsigned | NO   | MUL | 0                   |                |
| contact-id    | int(10) unsigned      | NO   | MUL | 0                   |                |
| guid          | char(16)              | NO   |     |                     |                |
| resource-id   | char(32)              | NO   | MUL |                     |                |
| created       | datetime              | NO   |     | 0001-01-01 00:00:00 |                |
| edited        | datetime              | NO   |     | 0001-01-01 00:00:00 |                |
| title         | varchar(255)          | NO   |     |                     |                |
| desc          | text                  | YES  |     | NULL                |                |
| album         | varchar(255)          | NO   |     |                     |                |
| filename      | varchar(255)          | NO   |     |                     |                |
| type          | varchar(30)           | NO   |     | image/jpeg          |                |
| height        | smallint(5) unsigned  | NO   |     | 0                   |                |
| width         | smallint(5) unsigned  | NO   |     | 0                   |                |
| datasize      | int(10) unsigned      | NO   |     | 0                   |                |
| data          | mediumblob            | NO   |     | NULL                |                |
| scale         | tinyint(3) unsigned   | NO   |     | 0                   |                |
| profile       | tinyint(1)            | NO   |     | 0                   |                |
| allow_cid     | mediumtext            | YES  |     | NULL                |                |
| allow_gid     | mediumtext            | YES  |     | NULL                |                |
| deny_cid      | mediumtext            | YES  |     | NULL                |                |
| deny_gid      | mediumtext            | YES  |     | NULL                |                |
| backend-class | tinytext              | YES  |     | NULL                |                |
| backend-ref   | text                  | YES  |     | NULL                |                |
| updated       | datetime              | NO   |     | 0001-01-01 00:00:00 |                |
| accessible    | tinyint(1)            | NO   |     | 0                   |                |
+---------------+-----------------------+------+-----+---------------------+----------------+
26 rows in set (0.000 sec)

@annando Where do the permissions of the photo in photo table are coming from? I mean the NULL permissions that are set and stored on submitting the comment?
Are they set like the permissions of the comment item itself (the comment where the image was inserted)? I think that would make sense to set the permissions of the image exactly like those of the corresponding item.

If this is true - then I have an idea why the NULL permissions are set. I checked the permissions of the item (GUID) in the item table...

select uid, guid, allow_cid, deny_cid, allow_gid, deny_gid from item where guid like '0b6b25a8-135e-6a5b-c14f-d7d335205043';

'0b6b25a8-135e-6a5b-c14f-d7d335205043' is the GUID of this test comment: https://libranet.de/display/0b6b25a8-135e-6a5b-c14f-d7d335205043

MariaDB [friendica]> select uid, guid, allow_cid, deny_cid, allow_gid, deny_gid from item where guid like '0b6b25a8-135e-6a5b-c14f-d7d335205043' limit 10;
+------+--------------------------------------+-----------+----------+-----------+----------+
| uid  | guid                                 | allow_cid | deny_cid | allow_gid | deny_gid |
+------+--------------------------------------+-----------+----------+-----------+----------+
|    2 | 0b6b25a8-135e-6a5b-c14f-d7d335205043 | NULL      | NULL     | NULL      | NULL     |
|    0 | 0b6b25a8-135e-6a5b-c14f-d7d335205043 | NULL      | NULL     | NULL      | NULL     |
| 2329 | 0b6b25a8-135e-6a5b-c14f-d7d335205043 | NULL      | NULL     | NULL      | NULL     |
| 1869 | 0b6b25a8-135e-6a5b-c14f-d7d335205043 | NULL      | NULL     | NULL      | NULL     |
| 2680 | 0b6b25a8-135e-6a5b-c14f-d7d335205043 | NULL      | NULL     | NULL      | NULL     |
| 1619 | 0b6b25a8-135e-6a5b-c14f-d7d335205043 | NULL      | NULL     | NULL      | NULL     |
|  600 | 0b6b25a8-135e-6a5b-c14f-d7d335205043 | NULL      | NULL     | NULL      | NULL     |
| 2210 | 0b6b25a8-135e-6a5b-c14f-d7d335205043 | NULL      | NULL     | NULL      | NULL     |
| 3244 | 0b6b25a8-135e-6a5b-c14f-d7d335205043 | NULL      | NULL     | NULL      | NULL     |
| 3351 | 0b6b25a8-135e-6a5b-c14f-d7d335205043 | NULL      | NULL     | NULL      | NULL     |
+------+--------------------------------------+-----------+----------+-----------+----------+
10 rows in set (0.000 sec)

What I don't understand is that NULL permission in item apparently means "public" while in photo it means "nobody but the owner" can access it. I'm puzzled.

The corresponding fields in the item table are some legacy stuff. In the item table the permissions are now stored in permission sets.

Please check your log for an entry like the following with the corresponding resource id:

index [INFO]: Set permissions {"condition":{"resource-id":"71443892915e70e2cd778f7688037768","uid":1},"permissions":{"allow_cid":"","allow_gid":"","deny_cid":"","deny_gid":""}} - {"file":"Photo.php","line":694,"function":"setPermissionFromBody","uid":"b134b7","process_id":29174}

Will do...

There's nothing with "Set permissions..." when I grep for the resource ID of the uploaded photo.

That's all I get:

2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F11570670415e727c27535cd674591371-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=11570670415e727c27535cd674591371-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A11570670415e727c27535cd674591371-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F11570670415e727c27535cd674591371-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/xrd?uri=11570670415e727c27535cd674591371-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/xrd?uri=acct%3A11570670415e727c27535cd674591371-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F11570670415e727c27535cd674591371-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=11570670415e727c27535cd674591371-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A11570670415e727c27535cd674591371-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/photo/11570670415e727c27535cd674591371-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/photo/11570670415e727c27535cd674591371-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:26Z index [WARNING]: error: https://libranet.de/photo/11570670415e727c27535cd674591371-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"0ed61a","process_id":12327}
2020-03-18T19:54:40Z worker [WARNING]: error: https://libranet.de/photo/11570670415e727c27535cd674591371-1.jpg: 404 -  {"worker_id":"099f73c","worker_cmd":"Notifier"} - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"ceec81","process_id":32196}

Do I have to raise the loglevel?

Ah! Loglevel INFO:

2020-03-18T20:12:32Z index [INFO]: Set permissions {"condition":{"resource-id":"10575549215e728078489e3323762423","uid":2},"permissions":{"allow_cid":null,"allow_gid":null,"deny_cid":null,"deny_gid":null}} - {"file":"Photo.php","line":694,"function":"setPermissionFromBody","uid":"98e397","process_id":4954}

It's NULL, apparently.

https://libranet.de/display/0b6b25a8-415e-7280-b04e-b54997903552

Ah, okay. That's what I expected.

Please show all log entries with "uid":"98e397" in it. This should show us more details.

I will do that this evening.

The output:
https://oc.libranet.de/s/jgEZGCEF2cxk8Hj

2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: mod_item: item_post {"parent":58570492} - {"file":"item.php","line":150,"function":"item_post","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Set permissions {"condition":{"resource-id":"10575549215e728078489e3323762423","uid":2},"permissions":{"allow_cid":null,"allow_gid":null,"deny_cid":null,"deny_gid":null}} - {"file":"Photo.php","line":694,"function":"setPermissionFromBody","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: scale_external_image:  [] - {"file":"BBCode.php","line":460,"function":"scaleExternalImages","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: : 0 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Probing {"host":"libranet.de","ssl_url":"https:\/\/libranet.de\/.well-known\/host-meta","url":"http:\/\/libranet.de\/.well-known\/host-meta","callstack":"Probe::detect, Probe::uri, BBCode::bbCodeMention2DiasporaCallback, preg_replace_callback, BBCode::toMarkdown, Diaspora::constructComment, Diaspora::createCommentSignature, item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func, Module::run, App::runFrontend"} - {"file":"Probe.php","line":156,"function":"hostMeta","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Probing successful for libranet.de [] - {"file":"Probe.php","line":222,"function":"hostMeta","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F10575549215e728078489e3323762423-0.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F10575549215e728078489e3323762423-0.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=10575549215e728078489e3323762423-0.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=10575549215e728078489e3323762423-0.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A10575549215e728078489e3323762423-0.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A10575549215e728078489e3323762423-0.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F10575549215e728078489e3323762423-0.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F10575549215e728078489e3323762423-0.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/xrd?uri=10575549215e728078489e3323762423-0.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=10575549215e728078489e3323762423-0.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/xrd?uri=acct%3A10575549215e728078489e3323762423-0.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=acct%3A10575549215e728078489e3323762423-0.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F10575549215e728078489e3323762423-0.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F10575549215e728078489e3323762423-0.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=10575549215e728078489e3323762423-0.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=10575549215e728078489e3323762423-0.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A10575549215e728078489e3323762423-0.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A10575549215e728078489e3323762423-0.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/photo/10575549215e728078489e3323762423-0.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Test Atom/RSS feed [] - {"file":"Feed.php","line":55,"function":"import","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: There are no entries in this feed. [] - {"file":"Feed.php","line":230,"function":"import","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/photo/10575549215e728078489e3323762423-0.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [WARNING]: error: https://libranet.de/photo/10575549215e728078489e3323762423-0.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 2 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Item::insert, item_post [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 2 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Item::insert, item_post [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: tagged thread 58570492 as mention for user 2 [] - {"file":"Item.php","line":1751,"function":"insert","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Inserted content for URI https://libranet.de/objects/0b6b25a8-415e-7280-b04e-b54997903552 (15352901) [] - {"file":"Item.php","line":2145,"function":"insertContent","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: created item 59915986 [] - {"file":"Item.php","line":1959,"function":"insert","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Update thread for item 58570492 - guid 0b6b25a8-545e-638a-2988-14d338973184 - 1 [] - {"file":"Item.php","line":3362,"function":"updateThread","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Item::addShadowPost, Item::insert, item_post, LegacyModule::runModuleFunction [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Fetched content for URI https://libranet.de/objects/0b6b25a8-415e-7280-b04e-b54997903552 (15352901) [] - {"file":"Item.php","line":2142,"function":"insertContent","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: created item 59915987 [] - {"file":"Item.php","line":1959,"function":"insert","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Update thread for item 58570493 - guid 0b6b25a8-545e-638a-2988-14d338973184 - 1 [] - {"file":"Item.php","line":3362,"function":"updateThread","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: Stored public shadow for comment https://libranet.de/objects/0b6b25a8-415e-7280-b04e-b54997903552 under id 59915987 [] - {"file":"Item.php","line":2471,"function":"addShadowPost","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: post_complete [] - {"file":"item.php","line":839,"function":"item_post","uid":"98e397","process_id":4954}
2020-03-18T20:12:32Z index [INFO]: post_json {"json":{"success":1}} - {"file":"item.php","line":865,"function":"item_post_return","uid":"98e397","process_id":4954}

That's looking confusing.

What exactly is confusing? 馃槵

The masses of data

I can do it again if that's helpful. Maybe I get a different/better log.

Question is if Fetched content for URI is always a part of the log in these cases.

Yup. Same. Now with loglevel DEBUG:

2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [DEBUG]: postvars {"_REQUEST":{"pagename":"item","type":"","profile_uid":"2","parent":"58570492","jsreload":"","post_id_random":"524404673326","body":"[url=https:\/\/libranet.de\/photos\/alfred\/image\/47790764315e73ec12d9f12802625316][img=https:\/\/libranet.de\/photo\/47790764315e73ec12d9f12802625316-1.png][\/img][\/url]"}} - {"file":"item.php","line":77,"function":"item_post","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: mod_item: item_post {"parent":58570492} - {"file":"item.php","line":150,"function":"item_post","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Set permissions {"condition":{"resource-id":"47790764315e73ec12d9f12802625316","uid":2},"permissions":{"allow_cid":null,"allow_gid":null,"deny_cid":null,"deny_gid":null}} - {"file":"Photo.php","line":694,"function":"setPermissionFromBody","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: scale_external_image:  [] - {"file":"BBCode.php","line":460,"function":"scaleExternalImages","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [DEBUG]: : 0  [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: : 0 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Probing {"host":"libranet.de","ssl_url":"https:\/\/libranet.de\/.well-known\/host-meta","url":"http:\/\/libranet.de\/.well-known\/host-meta","callstack":"Probe::detect, Probe::uri, BBCode::bbCodeMention2DiasporaCallback, preg_replace_callback, BBCode::toMarkdown, Diaspora::constructComment, Diaspora::createCommentSignature, item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func, Module::run, App::runFrontend"} - {"file":"Probe.php","line":156,"function":"hostMeta","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Probing successful for libranet.de [] - {"file":"Probe.php","line":222,"function":"hostMeta","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F47790764315e73ec12d9f12802625316-1.png: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F47790764315e73ec12d9f12802625316-1.png [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=47790764315e73ec12d9f12802625316-1.png%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=47790764315e73ec12d9f12802625316-1.png%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A47790764315e73ec12d9f12802625316-1.png%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A47790764315e73ec12d9f12802625316-1.png%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F47790764315e73ec12d9f12802625316-1.png: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F47790764315e73ec12d9f12802625316-1.png [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/xrd?uri=47790764315e73ec12d9f12802625316-1.png%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=47790764315e73ec12d9f12802625316-1.png%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/xrd?uri=acct%3A47790764315e73ec12d9f12802625316-1.png%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=acct%3A47790764315e73ec12d9f12802625316-1.png%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F47790764315e73ec12d9f12802625316-1.png: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F47790764315e73ec12d9f12802625316-1.png [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=47790764315e73ec12d9f12802625316-1.png%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=47790764315e73ec12d9f12802625316-1.png%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A47790764315e73ec12d9f12802625316-1.png%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A47790764315e73ec12d9f12802625316-1.png%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/photo/47790764315e73ec12d9f12802625316-1.png: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Test Atom/RSS feed [] - {"file":"Feed.php","line":55,"function":"import","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: There are no entries in this feed. [] - {"file":"Feed.php","line":230,"function":"import","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/photo/47790764315e73ec12d9f12802625316-1.png: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [WARNING]: error: https://libranet.de/photo/47790764315e73ec12d9f12802625316-1.png: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"3db923","process_id":15811}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 2 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Item::insert, item_post [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 2 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Item::insert, item_post [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: tagged thread 58570492 as mention for user 2 [] - {"file":"Item.php","line":1751,"function":"insert","uid":"3db923","process_id":15811}
 [] - {"file":"Item.php","line":1866,"function":"insert","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Inserted content for URI https://libranet.de/objects/0b6b25a8-175e-73ec-956a-f20404151291 (15389833) [] - {"file":"Item.php","line":2145,"function":"insertContent","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: created item 60065800 [] - {"file":"Item.php","line":1959,"function":"insert","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Update thread for item 58570492 - guid 0b6b25a8-545e-638a-2988-14d338973184 - 1 [] - {"file":"Item.php","line":3362,"function":"updateThread","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Item::addShadowPost, Item::insert, item_post, LegacyModule::runModuleFunction [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"3db923","process_id":15811}
 [] - {"file":"Item.php","line":1866,"function":"insert","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Fetched content for URI https://libranet.de/objects/0b6b25a8-175e-73ec-956a-f20404151291 (15389833) [] - {"file":"Item.php","line":2142,"function":"insertContent","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: created item 60065801 [] - {"file":"Item.php","line":1959,"function":"insert","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Update thread for item 58570493 - guid 0b6b25a8-545e-638a-2988-14d338973184 - 1 [] - {"file":"Item.php","line":3362,"function":"updateThread","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: Stored public shadow for comment https://libranet.de/objects/0b6b25a8-175e-73ec-956a-f20404151291 under id 60065801 [] - {"file":"Item.php","line":2471,"function":"addShadowPost","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: post_complete [] - {"file":"item.php","line":839,"function":"item_post","uid":"3db923","process_id":15811}
2020-03-19T22:05:09Z index [INFO]: post_json {"json":{"success":1}} - {"file":"item.php","line":865,"function":"item_post_return","uid":"3db923","process_id":15811}

Unfortunately, #8427 didn't fix it. Still NULL permissions in photo and no image in comment.

Wait. Do I need to create a new parent item (new thread) to test if the PR is working as intended?

Please fetch the content of the field psid and parent from the item 58570492 and the psid from the newly created item.

When the parent value is not identical with 58570492, then fetch the psid from the item with that id as well.

Then fetch the permissionset with the id from the values from psid from the query results above.

Please perform that query:
select id,uid,guid,created,network from item where psid=0 order by id limit 10;

It seems as if the picture problem is not the real problem.

Okay, I found the reason for the problem:
https://github.com/friendica/friendica/blob/2020.03-rc/src/Repository/PermissionSet.php#L132-L135

We store our permissions in a permission set. This is then fetched in the item query. But with this coding the system always return "0" for a public post - but there is no permission set with the id "0". So the permissions are set to "null".

I cannot simply remove that code, since it is used by the profiles as well. I have to coordinate with @MrPetovan to solve it.

The repository already has a contingency for this issue, notice in the same file line 70 how we return a virtual PermissionSet object when selecting the permission set with id = 0? We should always use this function to retrieve a permission set to handle the public permission case.

@AlfredSK I don't think so.

@MrPetovan that's not possible for the item record. For the item stuff we are using some JOIN and we shouldn't replace it with having to call that function for every retrieved line.

Can you add the public special case to the JOIN? You aren't using the actual values of the allow_cid, allow_gid, deny_cid and deny_gid in the query, right?

Another test after pulling #8428
Now the photo doesn't get NULL permissions. The photo is private (just accessible for me) now - before and after hitting the submit button.

MariaDB [friendica]> select uid, guid, `resource-id`, allow_cid, allow_gid, deny_cid, deny_gid from photo where `resource-id` like '13660833525e7524b970541962425593';
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
| uid | guid             | resource-id                      | allow_cid | allow_gid | deny_cid | deny_gid |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
|   2 | 0b65e7524b970616 | 13660833525e7524b970541962425593 | <2>       |           |          |          |
|   2 | 0b65e7524b970616 | 13660833525e7524b970541962425593 | <2>       |           |          |          |
|   2 | 0b65e7524b970616 | 13660833525e7524b970541962425593 | <2>       |           |          |          |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
3 rows in set (0.001 sec)

There is no 'set permissions' line in the log now.

@MrPetovan I don't know a way without massive overhead.

Turns out we don't need a special case in that query.

I believe #8435 is fixing the issue for good but it won't fix existing photos with null values.

I'll check it.

The permissions of the photo are not changed on submitting the comment. So the photo is private (only accessible to me).

The NULL permissions are gone. But now the images uploaded to comments are private! The 'set permissions' according to the parent item (comment) is completely missing. See...

MariaDB [friendica]> select uid, guid, `resource-id`, allow_cid, allow_gid, deny_cid, deny_gid from photo where `resource-id` like '20153223585e77110011c85240603094';
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
| uid | guid             | resource-id                      | allow_cid | allow_gid | deny_cid | deny_gid |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
|   2 | 0b65e77110011d95 | 20153223585e77110011c85240603094 | <2>       |           |          |          |
|   2 | 0b65e77110011d95 | 20153223585e77110011c85240603094 | <2>       |           |          |          |
|   2 | 0b65e77110011d95 | 20153223585e77110011c85240603094 | <2>       |           |          |          |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
3 rows in set (0.001 sec)

Log... There is NO line for 'set permissions' in the log now!

......
2020-03-22T07:30:31Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: mod_item: item_post {"parent":58570493} - {"file":"item.php","line":150,"function":"item_post","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: scale_external_image:  [] - {"file":"BBCode.php","line":460,"function":"scaleExternalImages","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: : 0 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: Probing {"host":"libranet.de","ssl_url":"https:\/\/libranet.de\/.well-known\/host-meta","url":"http:\/\/libranet.de\/.well-known\/host-meta","callstack":"Probe::detect, Probe::uri, BBCode::bbCodeMention2DiasporaCallback, preg_replace_callback, BBCode::toMarkdown, Diaspora::constructComment, Diaspora::createCommentSignature, item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func, Module::run, App::runFrontend"} - {"file":"Probe.php","line":156,"function":"hostMeta","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: Probing successful for libranet.de [] - {"file":"Probe.php","line":222,"function":"hostMeta","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F20553680595e7713f87d5bc120356096-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F20553680595e7713f87d5bc120356096-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=20553680595e7713f87d5bc120356096-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=20553680595e7713f87d5bc120356096-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A20553680595e7713f87d5bc120356096-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A20553680595e7713f87d5bc120356096-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F20553680595e7713f87d5bc120356096-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F20553680595e7713f87d5bc120356096-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/xrd?uri=20553680595e7713f87d5bc120356096-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=20553680595e7713f87d5bc120356096-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/xrd?uri=acct%3A20553680595e7713f87d5bc120356096-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=acct%3A20553680595e7713f87d5bc120356096-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F20553680595e7713f87d5bc120356096-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F20553680595e7713f87d5bc120356096-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=20553680595e7713f87d5bc120356096-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=20553680595e7713f87d5bc120356096-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A20553680595e7713f87d5bc120356096-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A20553680595e7713f87d5bc120356096-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/photo/20553680595e7713f87d5bc120356096-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: Test Atom/RSS feed [] - {"file":"Feed.php","line":55,"function":"import","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: There are no entries in this feed. [] - {"file":"Feed.php","line":230,"function":"import","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/photo/20553680595e7713f87d5bc120356096-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [WARNING]: error: https://libranet.de/photo/20553680595e7713f87d5bc120356096-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: Inserted content for URI https://libranet.de/objects/0b6b25a8-715e-7714-1729-b21194489139 (15461442) [] - {"file":"Item.php","line":2163,"function":"insertContent","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: created item 60359611 [] - {"file":"Item.php","line":1977,"function":"insert","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: Update thread for item 58570493 - guid 0b6b25a8-545e-638a-2988-14d338973184 - 1 [] - {"file":"Item.php","line":3380,"function":"updateThread","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: post_complete [] - {"file":"item.php","line":819,"function":"item_post","uid":"2ef347","process_id":28025}
2020-03-22T07:30:31Z index [INFO]: post_json {"json":{"success":1}} - {"file":"item.php","line":845,"function":"item_post_return","uid":"2ef347","process_id":28025}

Okay. So there is improvement to some point. Now we have to take the next hurdle.

Yep. But the behaviour didn't change with latest PR #8435.
It was already this way after PR #8428. ( see: https://github.com/friendica/friendica/issues/8371#issuecomment-601894503 )

Yeah, but the reason for that was different. Coding is sometimes like science. Failure is always an option and a way to improve.

Okay, the logging had been improved. Please try again and keep an eye on log entries with setPermissionFromBody.

tail -f log/friend.log | grep 'setpermissionfrombody' 
2020-03-22T12:04:05Z index [INFO]: Mismatching permissions {"condition":{"resource-id":"73112927615e775429547e8448071785"},"photo":{"allow_cid":"<2>","allow_gid":"","deny_cid":"","deny_gid":"","uid":2}} - {"file":"Photo.php","line":670,"function":"setPermissionFromBody","uid":"85c455","process_id":15365}

Everything with "uid":"85c455":

.....
2020-03-22T12:04:05Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [DEBUG]: postvars {"_REQUEST":{"pagename":"item","type":"","profile_uid":"0","parent":"58570493","jsreload":"","post_id_random":"008411824184","body":"After https:\/\/github.com\/friendica\/friendica\/pull\/8441\r\n\r\n[url=https:\/\/libranet.de\/photos\/alfred\/image\/73112927615e775429547e8448071785][img=https:\/\/libranet.de\/photo\/73112927615e775429547e8448071785-1.jpg][\/img][\/url]"}} - {"file":"item.php","line":77,"function":"item_post","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: mod_item: item_post {"parent":58570493} - {"file":"item.php","line":150,"function":"item_post","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Mismatching permissions {"condition":{"resource-id":"73112927615e775429547e8448071785"},"photo":{"allow_cid":"<2>","allow_gid":"","deny_cid":"","deny_gid":"","uid":2}} - {"file":"Photo.php","line":670,"function":"setPermissionFromBody","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: scale_external_image:  [] - {"file":"BBCode.php","line":460,"function":"scaleExternalImages","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [DEBUG]: : 0  [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: : 0 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Probing {"host":"libranet.de","ssl_url":"https:\/\/libranet.de\/.well-known\/host-meta","url":"http:\/\/libranet.de\/.well-known\/host-meta","callstack":"Probe::detect, Probe::uri, BBCode::bbCodeMention2DiasporaCallback, preg_replace_callback, BBCode::toMarkdown, Diaspora::constructComment, Diaspora::createCommentSignature, item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func, Module::run, App::runFrontend"} - {"file":"Probe.php","line":156,"function":"hostMeta","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Probing successful for libranet.de [] - {"file":"Probe.php","line":222,"function":"hostMeta","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F73112927615e775429547e8448071785-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F73112927615e775429547e8448071785-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=73112927615e775429547e8448071785-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=73112927615e775429547e8448071785-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A73112927615e775429547e8448071785-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A73112927615e775429547e8448071785-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F73112927615e775429547e8448071785-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F73112927615e775429547e8448071785-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/xrd?uri=73112927615e775429547e8448071785-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=73112927615e775429547e8448071785-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/xrd?uri=acct%3A73112927615e775429547e8448071785-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=acct%3A73112927615e775429547e8448071785-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F73112927615e775429547e8448071785-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F73112927615e775429547e8448071785-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=73112927615e775429547e8448071785-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=73112927615e775429547e8448071785-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A73112927615e775429547e8448071785-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A73112927615e775429547e8448071785-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/photo/73112927615e775429547e8448071785-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Test Atom/RSS feed [] - {"file":"Feed.php","line":55,"function":"import","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: There are no entries in this feed. [] - {"file":"Feed.php","line":230,"function":"import","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/photo/73112927615e775429547e8448071785-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [WARNING]: error: https://libranet.de/photo/73112927615e775429547e8448071785-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"85c455","process_id":15365}
 [] - {"file":"Item.php","line":1884,"function":"insert","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Inserted content for URI https://libranet.de/objects/0b6b25a8-805e-7754-353e-3fe503451695 (15467711) [] - {"file":"Item.php","line":2163,"function":"insertContent","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: created item 60387883 [] - {"file":"Item.php","line":1977,"function":"insert","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: Update thread for item 58570493 - guid 0b6b25a8-545e-638a-2988-14d338973184 - 1 [] - {"file":"Item.php","line":3380,"function":"updateThread","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: post_complete [] - {"file":"item.php","line":819,"function":"item_post","uid":"85c455","process_id":15365}
2020-03-22T12:04:05Z index [INFO]: post_json {"json":{"success":1}} - {"file":"item.php","line":845,"function":"item_post_return","uid":"85c455","process_id":15365

Where are the permissions stored for the comment item?

You said they are NOT stored in the 'item' table. But where are they stored then? When we set the permissions of the image exactly like the permissions of the "Body" (the comment item?) we need to know the permission set of the comment item.

So, where is it stored? I cannot find anything.

Wait for the next pull request. This enhances the logging just a little bit more. Now it is not the item permissions. It is the expected and received photo permissions.

Ok. I can tell that we don't store permissions in table 'permissionset' for public items. We only do that for private items.
(just in case that is the place where we are looking for permissions for the body-item)

PR is merged.

Gnarf ... I missed something at the logging again ...

Sorry I forgot to pull. :-)

My next heart ache gets on you ...

Greping for setpermissionfrom body:

2020-03-22T13:20:10Z index [INFO]: Mismatching permissions {"condition":{"allow_cid":"<2>","allow_gid":"","deny_cid":"","deny_gid":"","resource-id":"17181978825e7765fbd6532420908099","uid":0},"photo":{"allow_cid":"<2>","allow_gid":"","deny_cid":"","deny_gid":"","uid":2}} - {"file":"Photo.php","line":669,"function":"setPermissionFromBody","uid":"1e9e31","process_id":5759}

Greping for "uid":"1e9e31":

2020-03-22T13:20:10Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [DEBUG]: postvars {"_REQUEST":{"pagename":"item","type":"","profile_uid":"0","parent":"58570493","jsreload":"","post_id_random":"128705721477","body":"And now after https:\/\/github.com\/friendica\/friendica\/pull\/8442 again...\r\n\r\n[url=https:\/\/libranet.de\/photos\/alfred\/image\/17181978825e7765fbd6532420908099][img=https:\/\/libranet.de\/photo\/17181978825e7765fbd6532420908099-1.jpg][\/img][\/url]"}} - {"file":"item.php","line":77,"function":"item_post","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: mod_item: item_post {"parent":58570493} - {"file":"item.php","line":150,"function":"item_post","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: Mismatching permissions {"condition":{"allow_cid":"<2>","allow_gid":"","deny_cid":"","deny_gid":"","resource-id":"17181978825e7765fbd6532420908099","uid":0},"photo":{"allow_cid":"<2>","allow_gid":"","deny_cid":"","deny_gid":"","uid":2}} - {"file":"Photo.php","line":669,"function":"setPermissionFromBody","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: scale_external_image:  [] - {"file":"BBCode.php","line":460,"function":"scaleExternalImages","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [DEBUG]: : 0  [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: : 0 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: Probing {"host":"libranet.de","ssl_url":"https:\/\/libranet.de\/.well-known\/host-meta","url":"http:\/\/libranet.de\/.well-known\/host-meta","callstack":"Probe::detect, Probe::uri, BBCode::bbCodeMention2DiasporaCallback, preg_replace_callback, BBCode::toMarkdown, Diaspora::constructComment, Diaspora::createCommentSignature, item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func, Module::run, App::runFrontend"} - {"file":"Probe.php","line":156,"function":"hostMeta","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: Probing successful for libranet.de [] - {"file":"Probe.php","line":222,"function":"hostMeta","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F17181978825e7765fbd6532420908099-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F17181978825e7765fbd6532420908099-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=17181978825e7765fbd6532420908099-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=17181978825e7765fbd6532420908099-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A17181978825e7765fbd6532420908099-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A17181978825e7765fbd6532420908099-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F17181978825e7765fbd6532420908099-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F17181978825e7765fbd6532420908099-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/xrd?uri=17181978825e7765fbd6532420908099-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=17181978825e7765fbd6532420908099-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/xrd?uri=acct%3A17181978825e7765fbd6532420908099-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=acct%3A17181978825e7765fbd6532420908099-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F17181978825e7765fbd6532420908099-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F17181978825e7765fbd6532420908099-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=17181978825e7765fbd6532420908099-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=17181978825e7765fbd6532420908099-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A17181978825e7765fbd6532420908099-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A17181978825e7765fbd6532420908099-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/photo/17181978825e7765fbd6532420908099-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: Test Atom/RSS feed [] - {"file":"Feed.php","line":55,"function":"import","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: There are no entries in this feed. [] - {"file":"Feed.php","line":230,"function":"import","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/photo/17181978825e7765fbd6532420908099-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [WARNING]: error: https://libranet.de/photo/17181978825e7765fbd6532420908099-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"1e9e31","process_id":5759}
 [] - {"file":"Item.php","line":1884,"function":"insert","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: Inserted content for URI https://libranet.de/objects/0b6b25a8-695e-7766-0aaa-433039445928 (15469614) [] - {"file":"Item.php","line":2163,"function":"insertContent","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: created item 60396919 [] - {"file":"Item.php","line":1977,"function":"insert","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:10Z index [INFO]: Update thread for item 58570493 - guid 0b6b25a8-545e-638a-2988-14d338973184 - 1 [] - {"file":"Item.php","line":3380,"function":"updateThread","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:11Z index [INFO]: post_complete [] - {"file":"item.php","line":819,"function":"item_post","uid":"1e9e31","process_id":5759}
2020-03-22T13:20:11Z index [INFO]: post_json {"json":{"success":1}} - {"file":"item.php","line":845,"function":"item_post_return","uid":"1e9e31","process_id":5759}

Why on earth has the uid the value 0?

Okay, next problem ahead.

Yep. That's what I thought, too. UID 0 vs. UID 2.

And again ...

Oh! I can see an image when not authenticated.
https://libranet.de/display/0b6b25a8-165e-777c-571c-dbc568262350

2020-03-22T14:55:19Z index [INFO]: Set permissions {"condition":{"resource-id":"11524951605e777c383c40f665040752","uid":2},"permissions":{"allow_cid":"","allow_gid":"","deny_cid":"","deny_gid":"","accessible":"0"}} - {"file":"Photo.php","line":686,"function":"setPermissionFromBody","uid":"c8789e","process_id":29229}

And all with "uid":"c8789e":

.....
2020-03-22T14:55:19Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - Contact::getPublicAndUserContacID, Contact::isBlockedByUser, Session::setVisitorsContacts, Authentication::setForUser [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [DEBUG]: postvars {"_REQUEST":{"pagename":"item","type":"","profile_uid":"0","parent":"58570493","jsreload":"","post_id_random":"820420495576","body":"Why am I singing \"Neverending Story\"? ...\r\n\r\n[url=https:\/\/libranet.de\/photos\/alfred\/image\/11524951605e777c383c40f665040752][img=https:\/\/libranet.de\/photo\/11524951605e777c383c40f665040752-1.jpg][\/img][\/url]"}} - {"file":"item.php","line":77,"function":"item_post","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: mod_item: item_post {"parent":58570493} - {"file":"item.php","line":150,"function":"item_post","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: Set permissions {"condition":{"resource-id":"11524951605e777c383c40f665040752","uid":2},"permissions":{"allow_cid":"","allow_gid":"","deny_cid":"","deny_gid":"","accessible":"0"}} - {"file":"Photo.php","line":686,"function":"setPermissionFromBody","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: scale_external_image:  [] - {"file":"BBCode.php","line":460,"function":"scaleExternalImages","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [DEBUG]: : 0  [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [WARNING]: error: : 0 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: Get contact data for url https://libranet.de/profile/alfred and user 0 - item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func [] - {"file":"Contact.php","line":1453,"function":"getIdForURL","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: Probing {"host":"libranet.de","ssl_url":"https:\/\/libranet.de\/.well-known\/host-meta","url":"http:\/\/libranet.de\/.well-known\/host-meta","callstack":"Probe::detect, Probe::uri, BBCode::bbCodeMention2DiasporaCallback, preg_replace_callback, BBCode::toMarkdown, Diaspora::constructComment, Diaspora::createCommentSignature, item_post, LegacyModule::runModuleFunction, LegacyModule::post, call_user_func, Module::run, App::runFrontend"} - {"file":"Probe.php","line":156,"function":"hostMeta","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: Probing successful for libranet.de [] - {"file":"Probe.php","line":222,"function":"hostMeta","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F11524951605e777c383c40f665040752-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F11524951605e777c383c40f665040752-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=11524951605e777c383c40f665040752-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=11524951605e777c383c40f665040752-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A11524951605e777c383c40f665040752-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A11524951605e777c383c40f665040752-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [WARNING]: error: https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F11524951605e777c383c40f665040752-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=https%3A%2F%2Flibranet.de%2Fphoto%2F11524951605e777c383c40f665040752-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [WARNING]: error: https://libranet.de/xrd?uri=11524951605e777c383c40f665040752-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=11524951605e777c383c40f665040752-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [WARNING]: error: https://libranet.de/xrd?uri=acct%3A11524951605e777c383c40f665040752-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: No XML webfinger links for https://libranet.de/xrd?uri=acct%3A11524951605e777c383c40f665040752-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F11524951605e777c383c40f665040752-1.jpg: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=https%3A%2F%2Flibranet.de%2Fphoto%2F11524951605e777c383c40f665040752-1.jpg [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=11524951605e777c383c40f665040752-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=11524951605e777c383c40f665040752-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [WARNING]: error: https://libranet.de/.well-known/webfinger?resource=acct%3A11524951605e777c383c40f665040752-1.jpg%40libranet.de: 404 -  [] - {"file":"CurlResult.php","line":169,"function":"checkSuccess","uid":"c8789e","process_id":29229}
 [] - {"file":"CurlResult.php","line":170,"function":"checkSuccess","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: No XML webfinger links for https://libranet.de/.well-known/webfinger?resource=acct%3A11524951605e777c383c40f665040752-1.jpg%40libranet.de [] - {"file":"Probe.php","line":947,"function":"webfinger","uid":"c8789e","process_id":29229}
;?_Rzc?412OR'腋堑0>~@!`x?Sa>~
                           Wc
                             g4HS譁9~),Kn+脺4prrFy>7m~hoz3强4TDHSGn` [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: Test Atom/RSS feed [] - {"file":"Feed.php","line":55,"function":"import","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: There are no entries in this feed. [] - {"file":"Feed.php","line":230,"function":"import","uid":"c8789e","process_id":29229}
;?_Rzc?412OR'腋堑0>~@!`x?Sa>~
                           Wc
                             g4HS譁9~),Kn+脺4prrFy>7m~hoz3强4TDHSGn` [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
;?_Rzc?412OR'腋堑0>~@!`x?Sa>~
                           Wc
                             g4HS譁9~),Kn+脺4prrFy>7m~hoz3强4TDHSGn` [] - {"file":"CurlResult.php","line":133,"function":"__construct","uid":"c8789e","process_id":29229}
 [] - {"file":"Item.php","line":1884,"function":"insert","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: Inserted content for URI https://libranet.de/objects/0b6b25a8-165e-777c-571c-dbc568262350 (15471901) [] - {"file":"Item.php","line":2163,"function":"insertContent","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: created item 60407276 [] - {"file":"Item.php","line":1977,"function":"insert","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: Update thread for item 58570493 - guid 0b6b25a8-545e-638a-2988-14d338973184 - 1 [] - {"file":"Item.php","line":3380,"function":"updateThread","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: post_complete [] - {"file":"item.php","line":819,"function":"item_post","uid":"c8789e","process_id":29229}
2020-03-22T14:55:19Z index [INFO]: post_json {"json":{"success":1}} - {"file":"item.php","line":845,"function":"item_post_return","uid":"c8789e","process_id":29229}

I have no idea where that garbage in the log comes from.

Set permissions {"condition":{"resource-id":"11524951605e777c383c40f665040752","uid":2},"permissions":{"allow_cid":"","allow_gid":"","deny_cid":"","deny_gid":"","accessible":"0"}}

Well, well. That looks well.

Sounds like we finally nailed it?

Yeah! 馃帀 I hope we didn't destroy anything somewhere else. 馃

Ah! Nice, empty fields. I think we can close this now.

MariaDB [friendica]> select uid, guid, `resource-id`, allow_cid, allow_gid, deny_cid, deny_gid from photo where `resource-id` like '11524951605e777c383c40f665040752';
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
| uid | guid             | resource-id                      | allow_cid | allow_gid | deny_cid | deny_gid |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
|   2 | 0b65e777c383c4ff | 11524951605e777c383c40f665040752 |           |           |          |          |
|   2 | 0b65e777c383c4ff | 11524951605e777c383c40f665040752 |           |           |          |          |
|   2 | 0b65e777c383c4ff | 11524951605e777c383c40f665040752 |           |           |          |          |
+-----+------------------+----------------------------------+-----------+-----------+----------+----------+
3 rows in set (0.001 sec)
Was this page helpful?
0 / 5 - 0 ratings

Related issues

MrPetovan picture MrPetovan  路  49Comments

AlfredSK picture AlfredSK  路  47Comments

nupplaphil picture nupplaphil  路  47Comments

MrPetovan picture MrPetovan  路  52Comments

scroom picture scroom  路  81Comments